diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-01-09 03:23:41 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-01-09 03:23:41 +0000 |
commit | f645f963ff53cb6adca73b805e729ed955a20944 (patch) | |
tree | 532424c347402d50b10703122d9c6202ed181e14 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 7480ae6e191df66333f97885e0d38c08fffd8101 (diff) | |
download | bcm5719-llvm-f645f963ff53cb6adca73b805e729ed955a20944.tar.gz bcm5719-llvm-f645f963ff53cb6adca73b805e729ed955a20944.zip |
DwarfUnit: Rename "Node" to "CUNode" and propagate it through DwarfTypeUnit as well.
Since we'll now also need the split dwarf file name along with the
language in DwarfTypeUnits, just use the whole DICompileUnit rather than
explicitly handling each field needed.
llvm-svn: 198842
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 84d9cae7a1d..b0a6894bfa8 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -695,8 +695,8 @@ public: /// \brief Add a DIE to the set of types that we're going to pull into /// type units. - void addDwarfTypeUnitType(uint16_t Language, StringRef Identifier, DIE *Die, - DICompositeType CTy); + void addDwarfTypeUnitType(DICompileUnit CUNode, StringRef Identifier, + DIE *Die, DICompositeType CTy); /// \brief Add a label so that arange data can be generated for it. void addArangeLabel(SymbolCU SCU) { ArangeLabels.push_back(SCU); } |