[CodeGen/AccelTable] Don't emit zero-CU name indexes
authorPavel Labath <labath@google.com>
Mon, 9 Apr 2018 14:38:53 +0000 (14:38 +0000)
committerPavel Labath <labath@google.com>
Mon, 9 Apr 2018 14:38:53 +0000 (14:38 +0000)
commiteadfac87480b76f2069e41da9b92fe9f745fac8a
treed8b10e583630f313942e9185271305ccaba73e35
parentc1d6b5e458ed8d9f21b5548ef10c96dbdab9f476
[CodeGen/AccelTable] Don't emit zero-CU name indexes

Summary:
If an input DICompileUnit is completely empty (e.g., the result of
running "clang -g" on an empty file), we don't bother emitting an empty
DWARF CU. When we do that, we must make sure we don't also emit a DWARF v5
name index, as DWARF specifies that each index must reference at least
one compilation unit.

Reviewers: JDevlieghere, aprantl, dblaikie

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D45435

llvm-svn: 329575
llvm/lib/CodeGen/AsmPrinter/AccelTable.cpp
llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
llvm/test/DebugInfo/Generic/debug-names-empty-cu.ll [new file with mode: 0644]