aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBas Nieuwenhuizen <[email protected]>2017-01-08 22:39:36 +0100
committerBas Nieuwenhuizen <[email protected]>2017-01-12 21:39:41 +0100
commit18e70edd8c283463b2a5c8a22b6a5ea9a8d8fcd3 (patch)
treedb256159634bd3d8592632f6b7fba4d4c2a4c972 /src
parent970556292b37fb9f7a64460a964e7a88503dcab6 (diff)
radv: Only call remove_dead_variables once.
Port of 43e0b0d4b255d910616c10e3e01bfec5db469e0e "anv/pipeline: Only call remove_dead_variables once" Signed-off-by: Bas Nieuwenhuizen <[email protected]> Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/amd/vulkan/radv_pipeline.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c
index 61af01ca9e4..03603f5ecc2 100644
--- a/src/amd/vulkan/radv_pipeline.c
+++ b/src/amd/vulkan/radv_pipeline.c
@@ -219,9 +219,9 @@ radv_shader_compile_to_nir(struct radv_device *device,
assert(exec_list_length(&nir->functions) == 1);
entry_point->name = ralloc_strdup(entry_point, "main");
- nir_remove_dead_variables(nir, nir_var_shader_in);
- nir_remove_dead_variables(nir, nir_var_shader_out);
- nir_remove_dead_variables(nir, nir_var_system_value);
+ nir_remove_dead_variables(nir, nir_var_shader_in |
+ nir_var_shader_out |
+ nir_var_system_value);
nir_validate_shader(nir);
nir_lower_system_values(nir);