diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-02-11 21:49:46 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-02-11 21:49:46 +0000 |
commit | 284cfc108935663a4a398d616c0748f86be80af3 (patch) | |
tree | 6746aed640de56437e6bb42d0f99f483cf1a9a4b /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 4aca9b1cd852fcf4e11fa7ff26b73df6fbef8a4c (diff) | |
download | bcm5719-llvm-284cfc108935663a4a398d616c0748f86be80af3.tar.gz bcm5719-llvm-284cfc108935663a4a398d616c0748f86be80af3.zip |
DebugInfo: Don't include the name of the CU file in the line table file list when it's unneeded
This comes up in empty files or files containing #file directives that
never reference the actual source file name. Came up in a small test of
line tables I was playing with.
llvm-svn: 201187
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index c0d128be3dc..c3aba739cde 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -751,9 +751,6 @@ DwarfCompileUnit *DwarfDebug::constructDwarfCompileUnit(DICompileUnit DIUnit) { InfoHolder.addUnit(NewCU); FileIDCUMap[NewCU->getUniqueID()] = 0; - // Call this to emit a .file directive if it wasn't emitted for the source - // file this CU comes from yet. - getOrCreateSourceID(FN, CompilationDir, NewCU->getUniqueID()); NewCU->addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer()); NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2, |