diff options
Diffstat (limited to 'src/compiler/nir/nir_opt_cse.c')
-rw-r--r-- | src/compiler/nir/nir_opt_cse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/nir/nir_opt_cse.c b/src/compiler/nir/nir_opt_cse.c index 364fb023dce..109b62906ed 100644 --- a/src/compiler/nir/nir_opt_cse.c +++ b/src/compiler/nir/nir_opt_cse.c @@ -43,7 +43,7 @@ cse_block(nir_block *block, struct set *instr_set) { bool progress = false; - nir_foreach_instr_safe(block, instr) { + nir_foreach_instr_safe(instr, block) { if (nir_instr_set_add_or_rewrite(instr_set, instr)) { progress = true; nir_instr_remove(instr); @@ -55,7 +55,7 @@ cse_block(nir_block *block, struct set *instr_set) progress |= cse_block(child, instr_set); } - nir_foreach_instr(block, instr) + nir_foreach_instr(instr, block) nir_instr_set_remove(instr_set, instr); return progress; |