diff options
author | Jason Ekstrand <[email protected]> | 2016-12-13 18:19:42 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-12-29 16:02:44 -0800 |
commit | fb181196deac2e3a070c49a29803e53cc7cc7f9b (patch) | |
tree | ec2947cae8239ab8b0280f577417a8067e81c913 /src/gallium/drivers/vc4/vc4_program.c | |
parent | 194537ebe44cfcd6d72a98d0c2118f10a9e58deb (diff) |
nir: Rename convert_to_ssa lower_regs_to_ssa
This matches the naming of nir_lower_vars_to_ssa, the other to-SSA pass.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_program.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_program.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_program.c b/src/gallium/drivers/vc4/vc4_program.c index 54692bc73f9..c2d67277ef8 100644 --- a/src/gallium/drivers/vc4/vc4_program.c +++ b/src/gallium/drivers/vc4/vc4_program.c @@ -2409,7 +2409,7 @@ vc4_shader_state_create(struct pipe_context *pctx, } NIR_PASS_V(s, nir_opt_global_to_local); - NIR_PASS_V(s, nir_convert_to_ssa); + NIR_PASS_V(s, nir_lower_regs_to_ssa); NIR_PASS_V(s, nir_normalize_cubemap_coords); NIR_PASS_V(s, nir_lower_load_const_to_scalar); |