diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-16 02:24:01 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-16 02:24:01 +0000 |
commit | b0b0e4958b6b256f29b542a5ef6ecae8ad644bbb (patch) | |
tree | 417b23a9d18092c50792ced76912b0eb3c7cf474 /llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | |
parent | 8ef1bd24377e2c8ca059bb6439a06131f854747d (diff) | |
download | bcm5719-llvm-b0b0e4958b6b256f29b542a5ef6ecae8ad644bbb.tar.gz bcm5719-llvm-b0b0e4958b6b256f29b542a5ef6ecae8ad644bbb.zip |
DebugInfo: DIRef<> => TypedDebugNodeRef<>
Delete `DIRef<>`, and replace the remaining uses of it with
`TypedDebugNodeRef<>`. To minimize code churn, I've added typedefs from
`MDTypeRef` to `DITypeRef` (etc.).
llvm-svn: 235071
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h index a7378738d67..b354255d709 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h @@ -342,9 +342,6 @@ protected: /// resolve - Look in the DwarfDebug map for the MDNode that /// corresponds to the reference. - template <typename T> T resolve(DIRef<T> Ref) const { - return DD->resolve(Ref); - } template <typename T> T *resolve(TypedDebugNodeRef<T> Ref) const { return DD->resolve(Ref); } |