Do not emit multiple AT_container_type attributes.
authorDevang Patel <dpatel@apple.com>
Fri, 15 Jan 2010 00:26:31 +0000 (00:26 +0000)
committerDevang Patel <dpatel@apple.com>
Fri, 15 Jan 2010 00:26:31 +0000 (00:26 +0000)
We need to find a better way to emit this info.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93481 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfDebug.cpp

index 1ef3befe0bca2ddd6e801b52d69d89e48f88091b..af8366afabe8cc3fa46b2c3c154ef3eae2273a65 100644 (file)
@@ -1813,7 +1813,8 @@ void DwarfDebug::endModule() {
     DIE *NDie = ModuleCU->getDIE(N);
     if (!NDie) continue;
     addDIEEntry(SPDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie);
-    addDIEEntry(NDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie);
+    // FIXME - This is not the correct approach.
+    // addDIEEntry(NDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie);
   }
 
   // Standard sections final addresses.