mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Remove some more unused stuff from MachineInstr that was leftover from V9.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28091 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -55,15 +55,6 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// addReg - Add an LLVM value that is to be used as a register...
|
||||
///
|
||||
const MachineInstrBuilder &addCCReg(
|
||||
Value *V,
|
||||
MachineOperand::UseType Ty = MachineOperand::Use) const {
|
||||
MI->addCCRegOperand(V, Ty);
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// addRegDef - Add an LLVM value that is to be defined as a register... this
|
||||
/// is the same as addReg(V, MachineOperand::Def).
|
||||
///
|
||||
@ -71,22 +62,6 @@ public:
|
||||
return addReg(V, MachineOperand::Def);
|
||||
}
|
||||
|
||||
/// addPCDisp - Add an LLVM value to be treated as a PC relative
|
||||
/// displacement...
|
||||
///
|
||||
const MachineInstrBuilder &addPCDisp(Value *V) const {
|
||||
MI->addPCDispOperand(V);
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// addMReg - Add a machine register operand...
|
||||
///
|
||||
const MachineInstrBuilder &addMReg(int Reg, MachineOperand::UseType Ty
|
||||
= MachineOperand::Use) const {
|
||||
MI->addMachineRegOperand(Reg, Ty);
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// addImm - Add a new immediate operand.
|
||||
///
|
||||
const MachineInstrBuilder &addImm(int Val) const {
|
||||
|
Reference in New Issue
Block a user