aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetInstrInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-06 23:53:08 +0000
committerChris Lattner <sabre@nondot.org>2006-11-06 23:53:08 +0000
commitf6e8e6bace845cbbb6c1f6d859ffd8a3a154222b (patch)
treed6f573aa4d7e424808a4bba23050b9fbb946c795 /include/llvm/Target/TargetInstrInfo.h
parenta0cca4ae267bc28143e8f4737e119349d95e4825 (diff)
downloadexternal_llvm-f6e8e6bace845cbbb6c1f6d859ffd8a3a154222b.zip
external_llvm-f6e8e6bace845cbbb6c1f6d859ffd8a3a154222b.tar.gz
external_llvm-f6e8e6bace845cbbb6c1f6d859ffd8a3a154222b.tar.bz2
Add a new operand flag to mark which operand is the first predicate operand
of an M_PREDICATED instruction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31482 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetInstrInfo.h')
-rw-r--r--include/llvm/Target/TargetInstrInfo.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index 2754777..8717d72 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -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.
///