[llvm-commits] CVS: llvm/include/llvm/Target/TargetInstrInfo.h
Evan Cheng
evan.cheng at apple.com
Mon May 14 18:21:45 PDT 2007
Changes in directory llvm/include/llvm/Target:
TargetInstrInfo.h updated: 1.114 -> 1.115
---
Log message:
All operands that made up of the predicate operands are maked M_PREDICATE_OPERAND.
---
Diffs of the changes: (+2 -2)
TargetInstrInfo.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/Target/TargetInstrInfo.h
diff -u llvm/include/llvm/Target/TargetInstrInfo.h:1.114 llvm/include/llvm/Target/TargetInstrInfo.h:1.115
--- llvm/include/llvm/Target/TargetInstrInfo.h:1.114 Mon Mar 19 01:19:16 2007
+++ llvm/include/llvm/Target/TargetInstrInfo.h Mon May 14 20:21:27 2007
@@ -88,8 +88,8 @@
// 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.
+/// M_PREDICATE_OPERAND - Set if this is one of the operands that made up of the
+/// predicate operand that controls an M_PREDICATED instruction.
const unsigned M_PREDICATE_OPERAND = 1 << 1;
namespace TOI {
More information about the llvm-commits
mailing list