aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/MachineInstr.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-09-29 18:40:58 +0000
committerDevang Patel <dpatel@apple.com>2009-09-29 18:40:58 +0000
commitaaf012ebb492482ba3626e4129140713cd7836b7 (patch)
treea8b8f8f8ef75c6473e5b19d7f4f8b955af86052a /lib/CodeGen/MachineInstr.cpp
parente4002bc8194a36ff425f37829d6fb04a56ef1358 (diff)
downloadexternal_llvm-aaf012ebb492482ba3626e4129140713cd7836b7.zip
external_llvm-aaf012ebb492482ba3626e4129140713cd7836b7.tar.gz
external_llvm-aaf012ebb492482ba3626e4129140713cd7836b7.tar.bz2
Remove std::string uses from DebugInfo interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r--lib/CodeGen/MachineInstr.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp
index ae6f3f5..3d1c221 100644
--- a/lib/CodeGen/MachineInstr.cpp
+++ b/lib/CodeGen/MachineInstr.cpp
@@ -1041,9 +1041,8 @@ void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM) const {
const MachineFunction *MF = getParent()->getParent();
DebugLocTuple DLT = MF->getDebugLocTuple(debugLoc);
DICompileUnit CU(DLT.CompileUnit);
- std::string Dir, Fn;
OS << " [dbg: "
- << CU.getDirectory(Dir) << '/' << CU.getFilename(Fn) << ","
+ << CU.getDirectory() << '/' << CU.getFilename() << ","
<< DLT.Line << ","
<< DLT.Col << "]";
}