1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Add a new operand flag to mark which operand is the first predicate operand

of an M_PREDICATED instruction.

llvm-svn: 31482
This commit is contained in:
Chris Lattner 2006-11-06 23:53:08 +00:00
parent e1960fc065
commit b6be2b873f

View File

@ -90,6 +90,11 @@ const unsigned M_PREDICATED = 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.
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.
///