mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
r600g: fix bug created by 120a558624
This commit is contained in:
parent
ac5b174706
commit
adf89a3329
1 changed files with 2 additions and 2 deletions
|
|
@ -717,8 +717,8 @@ int r600_bc_add_alu_type(struct r600_bc *bc, const struct r600_bc_alu *alu, int
|
|||
/* check if we could add it anyway */
|
||||
if (bc->cf_last->inst == (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3) &&
|
||||
type == V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE) {
|
||||
LIST_FOR_EACH_ENTRY(alu, &bc->cf_last->alu, list) {
|
||||
if (alu->predicate) {
|
||||
LIST_FOR_EACH_ENTRY(lalu, &bc->cf_last->alu, list) {
|
||||
if (lalu->predicate) {
|
||||
bc->force_add_cf = 1;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue