summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir.c
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-04-26 18:34:19 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2016-04-28 15:54:48 -0700
commit707e72f13bb78869ee95d3286980bf1709cba6cf (patch)
tree351ee47ca2ac2b54fb7ef0e8effa65a6e81b2c80 /src/compiler/nir/nir.c
parent261d62de33b6192ec31f034a9897d034a37fa582 (diff)
downloadexternal_mesa3d-707e72f13bb78869ee95d3286980bf1709cba6cf.zip
external_mesa3d-707e72f13bb78869ee95d3286980bf1709cba6cf.tar.gz
external_mesa3d-707e72f13bb78869ee95d3286980bf1709cba6cf.tar.bz2
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 <ian.d.romanick@intel.com>
Diffstat (limited to 'src/compiler/nir/nir.c')
-rw-r--r--src/compiler/nir/nir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/nir/nir.c b/src/compiler/nir/nir.c
index bf8dded..37a15cf 100644
--- a/src/compiler/nir/nir.c
+++ b/src/compiler/nir/nir.c
@@ -1708,7 +1708,7 @@ nir_index_ssa_defs(nir_function_impl *impl)
unsigned index = 0;
nir_foreach_block(block, impl) {
- nir_foreach_instr(block, instr)
+ nir_foreach_instr(instr, block)
nir_foreach_ssa_def(instr, index_ssa_def_cb, &index);
}
@@ -1725,7 +1725,7 @@ nir_index_instrs(nir_function_impl *impl)
unsigned index = 0;
nir_foreach_block(block, impl) {
- nir_foreach_instr(block, instr)
+ nir_foreach_instr(instr, block)
instr->index = index++;
}