diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-02 05:57:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-02 05:57:12 +0000 |
commit | 9bcdcd17c7219dbc68de2f11ca2de86471c8c390 (patch) | |
tree | 60173becc7cd0c79edcc9869fd6d82d0b4cd5f86 /lib/CodeGen/MachineInstr.cpp | |
parent | 62d6ad2cee0e6b7fa653c8903a951f8497b6da3a (diff) |
Adjust to new TargetMachine interface
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13956 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 8d2cc932b2..a75c5795b1 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -322,7 +322,7 @@ void MachineInstr::print(std::ostream &OS, const TargetMachine &TM) const { OS << " = "; ++StartOp; // Don't print this operand again! } - OS << TM.getInstrInfo().getName(getOpcode()); + OS << TM.getInstrInfo()->getName(getOpcode()); for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) { const MachineOperand& mop = getOperand(i); |