summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineOperand.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-08-31 20:50:53 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-08-31 20:50:53 +0000
commit94083149fd6891c8a72472cf1814fa6600a75979 (patch)
tree789b62b2c8d309986e5ce08490b80464556971b4 /include/llvm/CodeGen/MachineOperand.h
parent265bcb1e5b106a7c5db2bfcfb13cceffe0c413be (diff)
downloadllvm-94083149fd6891c8a72472cf1814fa6600a75979.tar.gz
llvm-94083149fd6891c8a72472cf1814fa6600a75979.tar.bz2
llvm-94083149fd6891c8a72472cf1814fa6600a75979.tar.xz
Add MachineInstr::tieOperands, remove setIsTied().
Manage tied operands entirely internally to MachineInstr. This makes it possible to change the representation of tied operands, as I will do shortly. The constraint that tied uses and defs must be in the same order was too restrictive. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineOperand.h')
-rw-r--r--include/llvm/CodeGen/MachineOperand.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/MachineOperand.h b/include/llvm/CodeGen/MachineOperand.h
index 594dc276b0..baec8822c6 100644
--- a/include/llvm/CodeGen/MachineOperand.h
+++ b/include/llvm/CodeGen/MachineOperand.h
@@ -390,11 +390,6 @@ public:
IsEarlyClobber = Val;
}
- void setIsTied(bool Val = true) {
- assert(isReg() && "Wrong MachineOperand accessor");
- IsTied = Val;
- }
-
void setIsDebug(bool Val = true) {
assert(isReg() && IsDef && "Wrong MachineOperand accessor");
IsDebug = Val;