diff options
author | Dave Airlie <[email protected]> | 2010-08-31 09:02:02 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-08-31 09:43:48 +1000 |
commit | 5ea238b7991331c854e66a16911d616d36965dc9 (patch) | |
tree | 4e07a88da9e13b58ced7b468b9a82ac88574b716 /src/gallium/drivers/r600/r600_asm.c | |
parent | df869d916308759fbacb227f60b1b6eda73131e2 (diff) |
r600g: add missing literals
Also add an error if we hit this problem again, we need to do this better
possibly tying the literal addition to the last flag.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 1a354a6293b..6483dac7039 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -375,6 +375,9 @@ static int r600_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsign S_SQ_ALU_WORD1_OP2_UPDATE_PRED(alu->predicate); } if (alu->last) { + if (alu->nliteral && !alu->literal_added) { + R600_ERR("Bug in ALU processing for instruction 0x%08x, literal not added correctly\n"); + } for (i = 0; i < alu->nliteral; i++) { bc->bytecode[id++] = alu->value[i]; } |