mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-24 12:30:19 +01:00
r600g: fix op3 & write in merge_inst_groups
This commit is contained in:
parent
ebecbbc2e6
commit
dcdc062dda
1 changed files with 1 additions and 1 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue