diff options
author | Tanya Lattner <tonic@nondot.org> | 2004-06-25 00:13:11 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2004-06-25 00:13:11 +0000 |
commit | b140762a45d21aaed054f15adaff0fc2274d939d (patch) | |
tree | a68975838c30f8e7ff326503550a907dc17b3f13 /lib/CodeGen/RegAllocSimple.cpp | |
parent | 32b588039e8db86269edab5bd2b49ba1aebb00b8 (diff) | |
download | external_llvm-b140762a45d21aaed054f15adaff0fc2274d939d.zip external_llvm-b140762a45d21aaed054f15adaff0fc2274d939d.tar.gz external_llvm-b140762a45d21aaed054f15adaff0fc2274d939d.tar.bz2 |
Made a fix so that you can print out MachineInstrs that belong to a MachineBasicBlock that is not yet attached to a MachineFunction. This change includes changing the third operand (TargetMachine) to a pointer for the MachineInstr::print function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14389 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocSimple.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocSimple.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocSimple.cpp b/lib/CodeGen/RegAllocSimple.cpp index 4e825b2..ad46bbf 100644 --- a/lib/CodeGen/RegAllocSimple.cpp +++ b/lib/CodeGen/RegAllocSimple.cpp @@ -177,7 +177,7 @@ void RegAllocSimple::AllocateBasicBlock(MachineBasicBlock &MBB) { unsigned virtualReg = (unsigned) op.getReg(); DEBUG(std::cerr << "op: " << op << "\n"); DEBUG(std::cerr << "\t inst[" << i << "]: "; - MI->print(std::cerr, *TM)); + MI->print(std::cerr, TM)); // make sure the same virtual register maps to the same physical // register in any given instruction |