summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineInstr.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-01-16 06:09:35 +0000
committerDevang Patel <dpatel@apple.com>2010-01-16 06:09:35 +0000
commitc0e17df3ce0a4122583a74656ff9444a330ece30 (patch)
treed0b0083fdb7ad0089385ab297a9d7d8392005a89 /llvm/lib/CodeGen/MachineInstr.cpp
parent982adb518c34bb8a00d27cf7e42806b57113af9f (diff)
downloadbcm5719-llvm-c0e17df3ce0a4122583a74656ff9444a330ece30.tar.gz
bcm5719-llvm-c0e17df3ce0a4122583a74656ff9444a330ece30.zip
Replace DebugLocTuple with DILocation.
llvm-svn: 93630
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineInstr.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp
index cf3e3e16014..d58a0fb01a9 100644
--- a/llvm/lib/CodeGen/MachineInstr.cpp
+++ b/llvm/lib/CodeGen/MachineInstr.cpp
@@ -1189,17 +1189,17 @@ void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM) const {
// TODO: print InlinedAtLoc information
- DebugLocTuple DLT = MF->getDebugLocTuple(debugLoc);
- DIScope Scope(DLT.Scope);
+ DILocation DLT = MF->getDILocation(debugLoc);
+ DIScope Scope = DLT.getScope();
OS << " dbg:";
// Omit the directory, since it's usually long and uninteresting.
if (!Scope.isNull())
OS << Scope.getFilename();
else
OS << "<unknown>";
- OS << ':' << DLT.Line;
- if (DLT.Col != 0)
- OS << ':' << DLT.Col;
+ OS << ':' << DLT.getLineNumber();
+ if (DLT.getColumnNumber() != 0)
+ OS << ':' << DLT.getColumnNumber();
}
OS << "\n";
OpenPOWER on IntegriCloud