summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorBen Skeggs <[email protected]>2014-05-09 15:55:57 +1000
committerBen Skeggs <[email protected]>2014-05-15 09:54:34 +1000
commitbede1bdb4828ea673bc7859db4058da7e35c6774 (patch)
tree3e7f9507d9d580efe0502d58cde7abd5d5455a82 /src/gallium/drivers
parentc42d7556d3343c41977a2852d0c9028fd01a4c86 (diff)
nvc0: bump sched data member to 32-bits
SM50 backend requires 21 bits per instruction, not 8. Signed-off-by: Ben Skeggs <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/nouveau/codegen/nv50_ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir.h b/src/gallium/drivers/nouveau/codegen/nv50_ir.h
index 8872cfb7025..f082f856ffc 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir.h
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir.h
@@ -792,7 +792,7 @@ public:
int8_t flagsDef;
int8_t flagsSrc;
- uint8_t sched; // scheduling data (NOTE: maybe move to separate storage)
+ uint32_t sched; // scheduling data (NOTE: maybe move to separate storage)
BasicBlock *bb;