DebugInfo: Remove out of date comment
authorDavid Blaikie <dblaikie@gmail.com>
Sun, 22 Dec 2019 07:04:45 +0000 (23:04 -0800)
committerDavid Blaikie <dblaikie@gmail.com>
Sun, 22 Dec 2019 07:13:26 +0000 (23:13 -0800)
llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp

index b2b98f1..3801110 100644 (file)
@@ -78,10 +78,6 @@ DwarfCompileUnit::DwarfCompileUnit(unsigned UID, const DICompileUnit *Node,
 void DwarfCompileUnit::addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
                                        const MCSymbol *Label) {
   // Don't use the address pool in non-fission or in the skeleton unit itself.
-  // FIXME: Once GDB supports this, it's probably worthwhile using the address
-  // pool from the skeleton - maybe even in non-fission (possibly fewer
-  // relocations by sharing them in the pool, but we have other ideas about how
-  // to reduce the number of relocations as well/instead).
   if ((!DD->useSplitDwarf() || !Skeleton) && DD->getDwarfVersion() < 5)
     return addLocalLabelAddress(Die, Attribute, Label);