nir: Rename convert_to_ssa lower_regs_to_ssa

This matches the naming of nir_lower_vars_to_ssa, the other to-SSA pass.
This commit is contained in:
Jason Ekstrand
2016-12-13 18:19:42 -08:00
parent 194537ebe4
commit fb181196de
9 changed files with 12 additions and 13 deletions

View File

@@ -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;
}
}