From 7348ddaa74814cda8de8c2e33c5a4dee3b0ca3bc Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Tue, 14 Apr 2015 02:22:36 +0000 Subject: DebugInfo: Gut DIVariable and DIGlobalVariable Gut all the non-pointer API from the variable wrappers, except an implicit conversion from `DIGlobalVariable` to `DIDescriptor`. Note that if you're updating out-of-tree code, `DIVariable` wraps `MDLocalVariable` (`MDVariable` is a common base class shared with `MDGlobalVariable`). llvm-svn: 234840 --- llvm/lib/CodeGen/MachineInstr.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'llvm/lib/CodeGen/MachineInstr.cpp') diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 2fdc2bcaa42..f244e6b19e3 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -1620,8 +1620,8 @@ void MachineInstr::print(raw_ostream &OS, bool SkipOpers) const { if (isDebugValue() && MO.isMetadata()) { // Pretty print DBG_VALUE instructions. DIVariable DIV = dyn_cast(MO.getMetadata()); - if (DIV && !DIV.getName().empty()) - OS << "!\"" << DIV.getName() << '\"'; + if (DIV && !DIV->getName().empty()) + OS << "!\"" << DIV->getName() << '\"'; else MO.print(OS, TRI); } else if (TRI && (isInsertSubreg() || isRegSequence()) && MO.isImm()) { @@ -1711,8 +1711,8 @@ void MachineInstr::print(raw_ostream &OS, bool SkipOpers) const { if (isDebugValue() && getOperand(e - 2).isMetadata()) { if (!HaveSemi) OS << ";"; DIVariable DV = cast(getOperand(e - 2).getMetadata()); - OS << " line no:" << DV.getLineNumber(); - if (auto *InlinedAt = DV.getInlinedAt()) { + OS << " line no:" << DV->getLine(); + if (auto *InlinedAt = DV->getInlinedAt()) { DebugLoc InlinedAtDL(InlinedAt); if (InlinedAtDL && MF) { OS << " inlined @[ "; -- cgit v1.2.3