diff options
author | Stuart Hastings <stuart@apple.com> | 2010-05-28 16:41:07 +0000 |
---|---|---|
committer | Stuart Hastings <stuart@apple.com> | 2010-05-28 16:41:07 +0000 |
commit | c1e216583f9e626500c7b79f47653912712826e0 (patch) | |
tree | fd476d49a433297d2ce4d091427602b8dbcba719 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | e95bd34de6de65f6499ad9c36d9642f78512705b (diff) | |
download | bcm5719-llvm-c1e216583f9e626500c7b79f47653912712826e0.tar.gz bcm5719-llvm-c1e216583f9e626500c7b79f47653912712826e0.zip |
Revert 104841, 104842, 104876 due to buildbot failures. Radar 7424645.
llvm-svn: 104953
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index f975437e24f..f75447ec812 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -866,10 +866,6 @@ void DwarfDebug::addToContextOwner(DIE *Die, DIDescriptor Context) { } else if (Context.isNameSpace()) { DIE *ContextDIE = getOrCreateNameSpace(DINameSpace(Context)); ContextDIE->addChild(Die); - } else if (Context.isSubprogram()) { - DIE *ContextDIE = createSubprogramDIE(DISubprogram(Context), - /*MakeDecl=*/false); - ContextDIE->addChild(Die); } else if (DIE *ContextDIE = getCompileUnit(Context)->getDIE(Context)) ContextDIE->addChild(Die); else @@ -1059,10 +1055,6 @@ void DwarfDebug::constructTypeDIE(DIE &Buffer, DICompositeType CTy) { if (DIDescriptor(ContainingType).isCompositeType()) addDIEEntry(&Buffer, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, getOrCreateTypeDIE(DIType(ContainingType))); - else { - DIDescriptor Context = CTy.getContext(); - addToContextOwner(&Buffer, Context); - } break; } default: @@ -1337,9 +1329,6 @@ DIE *DwarfDebug::createSubprogramDIE(const DISubprogram &SP, bool MakeDecl) { // DW_TAG_inlined_subroutine may refer to this DIE. SPCU->insertDIE(SP, SPDie); - // Add to context owner. - addToContextOwner(SPDie, SP.getContext()); - return SPDie; } |