diff options
-rw-r--r-- | lib/Target/Target.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/Target.td b/lib/Target/Target.td index e72bff2674..af1872db52 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -172,9 +172,10 @@ def variable_ops; /// by a target. Targets can optionally provide their own operand types as /// needed, though this should not be needed for RISC targets. class Operand<ValueType ty> { - int NumMIOperands = 1; ValueType Type = ty; string PrintMethod = "printOperand"; + int NumMIOperands = 1; + dag MIOperandInfo = (ops); } def i1imm : Operand<i1>; |