i965: Reduce predicate field of backend_instruction to uint8_t.
authorMatt Turner <mattst88@gmail.com>
Thu, 20 Feb 2014 01:21:16 +0000 (17:21 -0800)
committerMatt Turner <mattst88@gmail.com>
Sat, 22 Feb 2014 06:51:32 +0000 (22:51 -0800)
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_shader.h

index c76f33b..4c79861 100644 (file)
@@ -56,7 +56,7 @@ public:
 
    enum opcode opcode; /* BRW_OPCODE_* or FS_OPCODE_* */
 
-   uint32_t predicate;
+   uint8_t predicate;
    bool predicate_inverse;
 };