diff options
author | Devang Patel <dpatel@apple.com> | 2010-05-04 06:15:30 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-05-04 06:15:30 +0000 |
commit | 075e9b5d668dac1f6dbf7f87035f238dfb5803fb (patch) | |
tree | 24adbe66ce991732dadc77899d28ab969c50674e /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 2dd1552588a4ba1906b587ff29d0147b7fe901de (diff) | |
download | bcm5719-llvm-075e9b5d668dac1f6dbf7f87035f238dfb5803fb.tar.gz bcm5719-llvm-075e9b5d668dac1f6dbf7f87035f238dfb5803fb.zip |
Set DW_AT_APPLE_omit_frame_ptr in endFunction() where MachineFunction is available all the time.
llvm-svn: 103001
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index e68a17d7af9..e9e9ba55db1 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1334,9 +1334,6 @@ DIE *DwarfDebug::createSubprogramDIE(const DISubprogram &SP, bool MakeDecl) { if (SP.isOptimized()) addUInt(SPDie, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1); - if (!DisableFramePointerElim(*Asm->MF)) - addUInt(SPDie, dwarf::DW_AT_APPLE_omit_frame_ptr, dwarf::DW_FORM_flag, 1); - // DW_TAG_inlined_subroutine may refer to this DIE. ModuleCU->insertDIE(SP.getNode(), SPDie); @@ -2533,8 +2530,13 @@ void DwarfDebug::endFunction(const MachineFunction *MF) { AE = AbstractScopesList.end(); AI != AE; ++AI) constructScopeDIE(*AI); - constructScopeDIE(CurrentFnDbgScope); + DIE *CurFnDIE = constructScopeDIE(CurrentFnDbgScope); + if (!DisableFramePointerElim(*MF)) + addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr, + dwarf::DW_FORM_flag, 1); + + DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(), MMI->getFrameMoves())); } |