summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/nir/nir_move_vec_src_uses_to_dest.c')
-rw-r--r--src/compiler/nir/nir_move_vec_src_uses_to_dest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_move_vec_src_uses_to_dest.c b/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
index a437fe8..8edf091 100644
--- a/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
+++ b/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
@@ -64,7 +64,7 @@ ssa_def_dominates_instr(nir_ssa_def *def, nir_instr *instr)
static bool
move_vec_src_uses_to_dest_block(nir_block *block)
{
- nir_foreach_instr(block, instr) {
+ nir_foreach_instr(instr, block) {
if (instr->type != nir_instr_type_alu)
continue;