summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineInstrBuilder.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-04 00:44:25 +0000
committerChris Lattner <sabre@nondot.org>2006-05-04 00:44:25 +0000
commit10f3597c4e0c13ecf0272b7ca0be741a91ade48c (patch)
treee8ada5091007276cd4383267a1aa4ac4a6434f6c /include/llvm/CodeGen/MachineInstrBuilder.h
parent0e57629a933a43d8adcba8368c4e3f90fe0f4e49 (diff)
downloadllvm-10f3597c4e0c13ecf0272b7ca0be741a91ade48c.tar.gz
llvm-10f3597c4e0c13ecf0272b7ca0be741a91ade48c.tar.bz2
llvm-10f3597c4e0c13ecf0272b7ca0be741a91ade48c.tar.xz
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
Diffstat (limited to 'include/llvm/CodeGen/MachineInstrBuilder.h')
-rw-r--r--include/llvm/CodeGen/MachineInstrBuilder.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/llvm/CodeGen/MachineInstrBuilder.h b/include/llvm/CodeGen/MachineInstrBuilder.h
index d29d53b637..c267c77da2 100644
--- a/include/llvm/CodeGen/MachineInstrBuilder.h
+++ b/include/llvm/CodeGen/MachineInstrBuilder.h
@@ -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 {