[llvm] r198361 - Remove comments on CU skeleton construction, they're probably

Eric Christopher echristo at gmail.com
Thu Jan 2 14:04:47 PST 2014


Author: echristo
Date: Thu Jan  2 16:04:47 2014
New Revision: 198361

URL: http://llvm.org/viewvc/llvm-project?rev=198361&view=rev
Log:
Remove comments on CU skeleton construction, they're probably
obvious.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=198361&r1=198360&r2=198361&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Thu Jan  2 16:04:47 2014
@@ -825,10 +825,6 @@ DwarfCompileUnit *DwarfDebug::constructD
   if (useSplitDwarf()) {
     NewCU->initSection(Asm->getObjFileLowering().getDwarfInfoDWOSection(),
                        DwarfInfoDWOSectionSym);
-    // If we're splitting the dwarf then construct the skeleton CU now
-    // since we'll need to be able to reference the symbols in the skeleton
-    // CU during various emission passes - in particular aranges need
-    // to reference the skeleton CU.
     NewCU->setSkeleton(constructSkeletonCU(NewCU));
   } else
     NewCU->initSection(Asm->getObjFileLowering().getDwarfInfoSection(),





More information about the llvm-commits mailing list