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>
This commit is contained in:
@@ -115,7 +115,7 @@ init_instr(nir_instr *instr, struct exec_list *worklist)
|
||||
static bool
|
||||
init_block(nir_block *block, struct exec_list *worklist)
|
||||
{
|
||||
nir_foreach_instr(block, instr)
|
||||
nir_foreach_instr(instr, block)
|
||||
init_instr(instr, worklist);
|
||||
|
||||
nir_if *following_if = nir_block_get_following_if(block);
|
||||
@@ -148,7 +148,7 @@ nir_opt_dce_impl(nir_function_impl *impl)
|
||||
bool progress = false;
|
||||
|
||||
nir_foreach_block(block, impl) {
|
||||
nir_foreach_instr_safe(block, instr) {
|
||||
nir_foreach_instr_safe(instr, block) {
|
||||
if (!instr->pass_flags) {
|
||||
nir_instr_remove(instr);
|
||||
progress = true;
|
||||
|
Reference in New Issue
Block a user