diff options
Diffstat (limited to 'src/compiler/nir/nir_opt_if.c')
-rw-r--r-- | src/compiler/nir/nir_opt_if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_opt_if.c b/src/compiler/nir/nir_opt_if.c index ec66175027a..68dacea7707 100644 --- a/src/compiler/nir/nir_opt_if.c +++ b/src/compiler/nir/nir_opt_if.c @@ -247,7 +247,7 @@ nir_opt_if(nir_shader *shader) * need to convert registers back into SSA defs and clean up SSA defs * that don't dominate their uses. */ - nir_convert_to_ssa_impl(function->impl); + nir_lower_regs_to_ssa_impl(function->impl); progress = true; } } |