mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
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
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user