[llvm-commits] CVS: llvm/include/llvm/Target/TargetInstrInfo.h

Chris Lattner sabre at nondot.org
Mon Nov 6 15:53:23 PST 2006



Changes in directory llvm/include/llvm/Target:

TargetInstrInfo.h updated: 1.103 -> 1.104
---
Log message:

Add a new operand flag to mark which operand is the first predicate operand
of an M_PREDICATED instruction.


---
Diffs of the changes:  (+5 -0)

 TargetInstrInfo.h |    5 +++++
 1 files changed, 5 insertions(+)


Index: llvm/include/llvm/Target/TargetInstrInfo.h
diff -u llvm/include/llvm/Target/TargetInstrInfo.h:1.103 llvm/include/llvm/Target/TargetInstrInfo.h:1.104
--- llvm/include/llvm/Target/TargetInstrInfo.h:1.103	Mon Nov  6 15:44:17 2006
+++ llvm/include/llvm/Target/TargetInstrInfo.h	Mon Nov  6 17:53:08 2006
@@ -90,6 +90,11 @@
 // requires a callback to look up its register class.
 const unsigned M_LOOK_UP_PTR_REG_CLASS = 1 << 0;
 
+/// M_PREDICATE_OPERAND - Set if this is the first operand of a predicate
+/// operand that controls an M_PREDICATED instruction.
+const unsigned M_PREDICATE_OPERAND = 1 << 1;
+
+
 /// TargetOperandInfo - This holds information about one operand of a machine
 /// instruction, indicating the register class for register operands, etc.
 ///






More information about the llvm-commits mailing list