diff options
author | Jason Ekstrand <[email protected]> | 2016-04-26 18:34:19 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-04-28 15:54:48 -0700 |
commit | 707e72f13bb78869ee95d3286980bf1709cba6cf (patch) | |
tree | 351ee47ca2ac2b54fb7ef0e8effa65a6e81b2c80 /src/compiler/nir/nir_liveness.c | |
parent | 261d62de33b6192ec31f034a9897d034a37fa582 (diff) |
nir: Switch the arguments to nir_foreach_instr
This matches the "foreach x in container" pattern found in many other
programming languages. Generated by the following regular expression:
s/nir_foreach_instr(\([^,]*\),\s*\([^,]*\))/nir_foreach_instr(\2, \1)/
and similar expressions for nir_foreach_instr_safe etc.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_liveness.c')
-rw-r--r-- | src/compiler/nir/nir_liveness.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler/nir/nir_liveness.c b/src/compiler/nir/nir_liveness.c index 67913ca86c0..69c6fd93b58 100644 --- a/src/compiler/nir/nir_liveness.c +++ b/src/compiler/nir/nir_liveness.c @@ -124,7 +124,7 @@ propagate_across_edge(nir_block *pred, nir_block *succ, NIR_VLA(BITSET_WORD, live, state->bitset_words); memcpy(live, succ->live_in, state->bitset_words * sizeof *live); - nir_foreach_instr(succ, instr) { + nir_foreach_instr(instr, succ) { if (instr->type != nir_instr_type_phi) break; nir_phi_instr *phi = nir_instr_as_phi(instr); @@ -133,7 +133,7 @@ propagate_across_edge(nir_block *pred, nir_block *succ, set_ssa_def_dead(&phi->dest.ssa, live); } - nir_foreach_instr(succ, instr) { + nir_foreach_instr(instr, succ) { if (instr->type != nir_instr_type_phi) break; nir_phi_instr *phi = nir_instr_as_phi(instr); @@ -165,7 +165,7 @@ nir_live_ssa_defs_impl(nir_function_impl *impl) */ state.num_ssa_defs = 1; nir_foreach_block(block, impl) { - nir_foreach_instr(block, instr) + nir_foreach_instr(instr, block) nir_foreach_ssa_def(instr, index_ssa_def, &state); } @@ -201,7 +201,7 @@ nir_live_ssa_defs_impl(nir_function_impl *impl) if (following_if) set_src_live(&following_if->condition, block->live_in); - nir_foreach_instr_reverse(block, instr) { + nir_foreach_instr_reverse(instr, block) { /* Phi nodes are handled seperately so we want to skip them. Since * we are going backwards and they are at the beginning, we can just * break as soon as we see one. |