diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-21 18:44:06 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-21 18:44:06 +0000 |
commit | 60635e39b669713fe8d7b40bf8b4b10fb7fb34d6 (patch) | |
tree | a0a124c763e644d915844e862e6216375674137f /llvm/lib/CodeGen/LiveDebugVariables.cpp | |
parent | dadc2b627d834acda6def76209db2c2001a079a9 (diff) | |
download | llvm-60635e39b669713fe8d7b40bf8b4b10fb7fb34d6.zip llvm-60635e39b669713fe8d7b40bf8b4b10fb7fb34d6.tar.gz llvm-60635e39b669713fe8d7b40bf8b4b10fb7fb34d6.tar.bz2 |
DebugInfo: Drop rest of DIDescriptor subclasses
Delete the remaining subclasses of (the already deleted) `DIDescriptor`.
Part of PR23080.
llvm-svn: 235404
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugVariables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.cpp b/llvm/lib/CodeGen/LiveDebugVariables.cpp index c2993db..df48c53 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.cpp +++ b/llvm/lib/CodeGen/LiveDebugVariables.cpp @@ -394,7 +394,7 @@ static void printExtendedName(raw_ostream &OS, const MDLocalVariable *V, } void UserValue::print(raw_ostream &OS, const TargetRegisterInfo *TRI) { - DIVariable DV = cast<MDLocalVariable>(Variable); + auto *DV = cast<MDLocalVariable>(Variable); OS << "!\""; printExtendedName(OS, DV, dl); |