diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-21 20:07:38 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-21 20:07:38 +0000 |
commit | aa861aa48354ca6bd2acc37e7de0990a18724b5b (patch) | |
tree | 4f7aedaa9361c65cf8ecf965704b2a9464081a37 /llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | |
parent | 8e47da4f5b564342b0a1e67d8daaf12b9208683e (diff) | |
download | bcm5719-llvm-aa861aa48354ca6bd2acc37e7de0990a18724b5b.tar.gz bcm5719-llvm-aa861aa48354ca6bd2acc37e7de0990a18724b5b.zip |
DebugInfo: Remove DIArray and DITypeArray typedefs
Remove the `DIArray` and `DITypeArray` typedefs, preferring the
underlying types (`DebugNodeArray` and `MDTypeRefArray`, respectively).
llvm-svn: 235413
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h index 7041f376ef4..1cbf3489b1b 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h @@ -268,7 +268,7 @@ public: void addLinkageName(DIE &Die, StringRef LinkageName); /// \brief Add template parameters in buffer. - void addTemplateParams(DIE &Buffer, DIArray TParams); + void addTemplateParams(DIE &Buffer, DebugNodeArray TParams); /// \brief Add register operand. /// \returns false if the register does not exist, e.g., because it was never @@ -316,7 +316,7 @@ public: void constructContainingTypeDIEs(); /// \brief Construct function argument DIEs. - void constructSubprogramArguments(DIE &Buffer, DITypeArray Args); + void constructSubprogramArguments(DIE &Buffer, MDTypeRefArray Args); /// Create a DIE with the given Tag, add the DIE to its parent, and /// call insertDIE if MD is not null. |