diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-05-15 01:21:27 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-05-15 01:21:27 +0000 |
commit | 785276fcda4c00b05d60814c2455d6b60f95c5ce (patch) | |
tree | a1b0fb7b0948596527e064470918dfd8cfa4859c /llvm | |
parent | c0fb94596a16cd02ec269d8f70270a4c06351890 (diff) | |
download | bcm5719-llvm-785276fcda4c00b05d60814c2455d6b60f95c5ce.tar.gz bcm5719-llvm-785276fcda4c00b05d60814c2455d6b60f95c5ce.zip |
All operands that made up of the predicate operands are maked M_PREDICATE_OPERAND.
llvm-svn: 37062
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Target/TargetInstrInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Target/TargetInstrInfo.h b/llvm/include/llvm/Target/TargetInstrInfo.h index aef9093d49e..29ff38fbc8f 100644 --- a/llvm/include/llvm/Target/TargetInstrInfo.h +++ b/llvm/include/llvm/Target/TargetInstrInfo.h @@ -88,8 +88,8 @@ const unsigned M_REMATERIALIZIBLE = 1 << 13; // 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 { |