diff options
author | Devang Patel <dpatel@apple.com> | 2010-01-16 06:17:40 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-01-16 06:17:40 +0000 |
commit | 814b7e74889632c22118cbbfd37c99466a27d94c (patch) | |
tree | f910b5156c6ec0beaf541176836bf1fe39b84ff8 /llvm/lib | |
parent | c0e17df3ce0a4122583a74656ff9444a330ece30 (diff) | |
download | bcm5719-llvm-814b7e74889632c22118cbbfd37c99466a27d94c.tar.gz bcm5719-llvm-814b7e74889632c22118cbbfd37c99466a27d94c.zip |
No need to use WeakVH here.
llvm-svn: 93631
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 8725c596982..f89f2e1a3be 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -165,8 +165,7 @@ public: class DbgScope { DbgScope *Parent; // Parent to this scope. DIDescriptor Desc; // Debug info descriptor for scope. - // FIXME : Use of WeakVH may be expensive here. - WeakVH InlinedAtLocation; // Location at which scope is inlined. + MDNode * InlinedAtLocation; // Location at which scope is inlined. bool AbstractScope; // Abstract Scope unsigned StartLabelID; // Label ID of the beginning of scope. unsigned EndLabelID; // Label ID of the end of scope. |