diff options
author | Vadim Girlin <[email protected]> | 2011-10-06 09:04:41 +0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2011-11-14 11:11:31 -0500 |
commit | dcdc062dda62212d09f522e07530ed79871ba481 (patch) | |
tree | f2d0ea11f9adc891fbe5ddb5f553df29c49c51e2 /src | |
parent | ebecbbc2e68673a49c3d0394c2f591f7a605110f (diff) |
r600g: fix op3 & write in merge_inst_groups
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index add1276e5dc..72c11dc44eb 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -1045,7 +1045,7 @@ static int merge_inst_groups(struct r600_bytecode *bc, struct r600_bytecode_alu continue; for (j = 0; j < max_slots; ++j) { - if (!prev[j] || !prev[j]->dst.write) + if (!prev[j] || !(prev[j]->dst.write || prev[j]->is_op3)) continue; /* If it's relative then we can't determin which gpr is really used. */ |