diff options
author | Tom Stellard <[email protected]> | 2012-08-22 15:04:58 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-08-23 15:00:47 +0000 |
commit | 67a47a445b544ac638d10303dc697d70f25d12fb (patch) | |
tree | 53389276cfde310b51178027f9b684a344f598da /src/gallium/drivers/radeon/AMDGPUInstrInfo.h | |
parent | 3a7a56e7aa56bc6cb847c241ef6bd749713ae6e1 (diff) |
radeon/llvm: Add flag operand to some instructions
This new operand replaces the MachineOperand flags in LLVM, which
will be deprecated soon. Eventually all instructions should have a flag
operand, but for now this operand has only been added to instructions
that need it.
Diffstat (limited to 'src/gallium/drivers/radeon/AMDGPUInstrInfo.h')
-rw-r--r-- | src/gallium/drivers/radeon/AMDGPUInstrInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/AMDGPUInstrInfo.h b/src/gallium/drivers/radeon/AMDGPUInstrInfo.h index de3c5940613..5f72869cb0a 100644 --- a/src/gallium/drivers/radeon/AMDGPUInstrInfo.h +++ b/src/gallium/drivers/radeon/AMDGPUInstrInfo.h @@ -31,6 +31,7 @@ #define MO_FLAG_MASK (1 << 3) #define MO_FLAG_PUSH (1 << 4) #define MO_FLAG_LAST (1 << 5) +#define NUM_MO_FLAGS 6 #define OPCODE_IS_ZERO_INT 0x00000045 #define OPCODE_IS_NOT_ZERO_INT 0x00000042 |