Move section label emission to module end. Nothing should be
authorEric Christopher <echristo@gmail.com>
Mon, 19 Nov 2012 19:43:59 +0000 (19:43 +0000)
committerEric Christopher <echristo@gmail.com>
Mon, 19 Nov 2012 19:43:59 +0000 (19:43 +0000)
depending on them being emitted before the text and/or data
sections and testing didn't uncover any.

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

lib/CodeGen/AsmPrinter/DwarfDebug.cpp

index 742a779b6fe325dd58e4a6b63fbb50595a19c7a1..aa10539763fd913c3517274aef82ed9b77534ae7 100644 (file)
@@ -791,9 +791,6 @@ void DwarfDebug::beginModule(Module *M) {
   // Tell MMI that we have debug info.
   MMI->setDebugInfoAvailability(true);
   
-  // Emit initial sections.
-  EmitSectionLabels();
-
   // Prime section data.
   SectionMap.insert(Asm->getObjFileLowering().getTextSection());
 }
@@ -876,6 +873,9 @@ void DwarfDebug::endModule() {
   // Compute DIE offsets and sizes.
   computeSizeAndOffsets();
 
+  // Emit initial sections.
+  EmitSectionLabels();
+
   // Emit all the DIEs into a debug info section
   emitDebugInfo();