From 707e72f13bb78869ee95d3286980bf1709cba6cf Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 26 Apr 2016 18:34:19 -0700 Subject: 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 --- src/compiler/nir/nir_to_ssa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/compiler/nir/nir_to_ssa.c') diff --git a/src/compiler/nir/nir_to_ssa.c b/src/compiler/nir/nir_to_ssa.c index 1a772fff2d..766849192f 100644 --- a/src/compiler/nir/nir_to_ssa.c +++ b/src/compiler/nir/nir_to_ssa.c @@ -381,7 +381,7 @@ rewrite_instr_forward(nir_instr *instr, rewrite_state *state) static void rewrite_phi_sources(nir_block *block, nir_block *pred, rewrite_state *state) { - nir_foreach_instr(block, instr) { + nir_foreach_instr(instr, block) { if (instr->type != nir_instr_type_phi) break; @@ -434,7 +434,7 @@ rewrite_block(nir_block *block, rewrite_state *state) * what we want because those instructions (vector gather, conditional * select) will already be in SSA form. */ - nir_foreach_instr_safe(block, instr) { + nir_foreach_instr_safe(instr, block) { rewrite_instr_forward(instr, state); } @@ -455,7 +455,7 @@ rewrite_block(nir_block *block, rewrite_state *state) for (unsigned i = 0; i < block->num_dom_children; i++) rewrite_block(block->dom_children[i], state); - nir_foreach_instr_reverse(block, instr) { + nir_foreach_instr_reverse(instr, block) { rewrite_instr_backwards(instr, state); } } -- cgit v1.2.3