diff options
author | Eric Christopher <echristo@gmail.com> | 2015-02-26 23:32:17 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-02-26 23:32:17 +0000 |
commit | b9f0009b5ad0ccf636ad1abbe9e0f09c0989d421 (patch) | |
tree | 9e68b73c5a8207ef80b00d1f530ae739bf38ffb0 /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | 11e4df73c8f8f591e464c91147186c26d5c39f80 (diff) | |
download | bcm5719-llvm-b9f0009b5ad0ccf636ad1abbe9e0f09c0989d421.tar.gz bcm5719-llvm-b9f0009b5ad0ccf636ad1abbe9e0f09c0989d421.zip |
Remove DebugLoc::print(LLVMContext, raw_ostream), it was just
forwarding to the one that didn't take a context.
llvm-svn: 230700
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 981e4a3e03f..00b56509332 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -1512,12 +1512,6 @@ void MachineInstr::dump() const { #endif } -static void printDebugLoc(DebugLoc DL, const MachineFunction *MF, - raw_ostream &CommentOS) { - const LLVMContext &Ctx = MF->getFunction()->getContext(); - DL.print(Ctx, CommentOS); -} - void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM, bool SkipOpers) const { // We can be a bit tidier if we know the TargetMachine and/or MachineFunction. @@ -1738,7 +1732,7 @@ void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM, DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(InlinedAt); if (!InlinedAtDL.isUnknown() && MF) { OS << " inlined @[ "; - printDebugLoc(InlinedAtDL, MF, OS); + InlinedAtDL.print(OS); OS << " ]"; } } @@ -1747,7 +1741,7 @@ void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM, } else if (!debugLoc.isUnknown() && MF) { if (!HaveSemi) OS << ";"; OS << " dbg:"; - printDebugLoc(debugLoc, MF, OS); + debugLoc.print(OS); } OS << '\n'; |