All operands that made up of the predicate operands are maked M_PREDICATE_OPERAND.

llvm-svn: 37062
This commit is contained in:
Evan Cheng 2007-05-15 01:21:27 +00:00
parent c0fb94596a
commit 785276fcda
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ const unsigned M_REMATERIALIZIBLE = 1 << 13;
// requires a callback to look up its register class. // requires a callback to look up its register class.
const unsigned M_LOOK_UP_PTR_REG_CLASS = 1 << 0; const unsigned M_LOOK_UP_PTR_REG_CLASS = 1 << 0;
/// M_PREDICATE_OPERAND - Set if this is the first operand of a predicate /// M_PREDICATE_OPERAND - Set if this is one of the operands that made up of the
/// operand that controls an M_PREDICATED instruction. /// predicate operand that controls an M_PREDICATED instruction.
const unsigned M_PREDICATE_OPERAND = 1 << 1; const unsigned M_PREDICATE_OPERAND = 1 << 1;
namespace TOI { namespace TOI {