[llvm-commits] CVS: llvm/lib/Target/Target.td
Chris Lattner
lattner at cs.uiuc.edu
Fri Nov 18 23:00:21 PST 2005
Changes in directory llvm/lib/Target:
Target.td updated: 1.57 -> 1.58
---
Log message:
Capture more operand info, patch by Evan Cheng
---
Diffs of the changes: (+2 -1)
Target.td | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/lib/Target/Target.td
diff -u llvm/lib/Target/Target.td:1.57 llvm/lib/Target/Target.td:1.58
--- llvm/lib/Target/Target.td:1.57 Thu Nov 17 18:53:32 2005
+++ llvm/lib/Target/Target.td Sat Nov 19 01:00:10 2005
@@ -172,9 +172,10 @@
/// 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>;
More information about the llvm-commits
mailing list