diff options
Diffstat (limited to 'src/compiler/nir/nir_repair_ssa.c')
-rw-r--r-- | src/compiler/nir/nir_repair_ssa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_repair_ssa.c b/src/compiler/nir/nir_repair_ssa.c index 7dd4065e427..7dd23979fcd 100644 --- a/src/compiler/nir/nir_repair_ssa.c +++ b/src/compiler/nir/nir_repair_ssa.c @@ -143,7 +143,7 @@ nir_repair_ssa(nir_shader *shader) { bool progress = false; - nir_foreach_function(shader, function) { + nir_foreach_function(function, shader) { if (function->impl) progress = nir_repair_ssa_impl(function->impl) || progress; } |