From a5bb370aa42a238e07ee22adcdc792df292b1ab0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 30 Dec 2007 23:10:15 +0000 Subject: Add new shorter predicates for testing machine operands for various types: e.g. MO.isMBB() instead of MO.isMachineBasicBlock(). I don't plan on switching everything over, so new clients should just start using the shorter names. Remove old long accessors, switching everything over to use the short accessor: getMachineBasicBlock() -> getMBB(), getConstantPoolIndex() -> getIndex(), setMachineBasicBlock -> setMBB(), etc. llvm-svn: 45464 --- llvm/lib/Target/TargetInstrInfo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'llvm/lib/Target/TargetInstrInfo.cpp') diff --git a/llvm/lib/Target/TargetInstrInfo.cpp b/llvm/lib/Target/TargetInstrInfo.cpp index 0ee891698f3..9849c7564ee 100644 --- a/llvm/lib/Target/TargetInstrInfo.cpp +++ b/llvm/lib/Target/TargetInstrInfo.cpp @@ -62,14 +62,14 @@ bool TargetInstrInfo::PredicateInstruction(MachineInstr *MI, for (unsigned j = 0, i = 0, e = MI->getNumOperands(); i != e; ++i) { if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) { MachineOperand &MO = MI->getOperand(i); - if (MO.isRegister()) { + if (MO.isReg()) { MO.setReg(Pred[j].getReg()); MadeChange = true; - } else if (MO.isImmediate()) { + } else if (MO.isImm()) { MO.setImm(Pred[j].getImm()); MadeChange = true; - } else if (MO.isMachineBasicBlock()) { - MO.setMachineBasicBlock(Pred[j].getMachineBasicBlock()); + } else if (MO.isMBB()) { + MO.setMBB(Pred[j].getMBB()); MadeChange = true; } ++j; -- cgit v1.2.3