diff options
author | David Blaikie <dblaikie@gmail.com> | 2019-12-21 23:04:45 -0800 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2019-12-21 23:13:26 -0800 |
commit | d0bfb3c583031f410e8219155f0cf9ee8fb08504 (patch) | |
tree | 4cd7cafd86f465a6ca562321191f4d65e5c89a52 /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | |
parent | 0792ef72564071f21b727d0de3a14d565950290f (diff) | |
download | bcm5719-llvm-d0bfb3c583031f410e8219155f0cf9ee8fb08504.tar.gz bcm5719-llvm-d0bfb3c583031f410e8219155f0cf9ee8fb08504.zip |
DebugInfo: Remove out of date comment
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp index b2b98f19ca1..38011102c7b 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp @@ -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); |