i965: Reduce predicate field of backend_instruction to uint8_t.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Matt Turner 2014-02-19 17:21:16 -08:00
parent 079773d1cb
commit 00c567e897

View file

@ -56,7 +56,7 @@ public:
enum opcode opcode; /* BRW_OPCODE_* or FS_OPCODE_* */ enum opcode opcode; /* BRW_OPCODE_* or FS_OPCODE_* */
uint32_t predicate; uint8_t predicate;
bool predicate_inverse; bool predicate_inverse;
}; };