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 | 5de723c1189c596a9c1b90ce4ee90c137f198ad4 (patch) | |
tree | 63699733e4ffff65e26885131cab8568e4591ee0 /include/llvm/Target | |
parent | 3ab6dcfc54426ebdb3d0027187c11ad369af426f (diff) | |
download | external_llvm-5de723c1189c596a9c1b90ce4ee90c137f198ad4.zip external_llvm-5de723c1189c596a9c1b90ce4ee90c137f198ad4.tar.gz external_llvm-5de723c1189c596a9c1b90ce4ee90c137f198ad4.tar.bz2 |
All operands that made up of the predicate operands are maked M_PREDICATE_OPERAND.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37062 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index aef9093..29ff38f 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/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 { |