From: Daniel Schürmann Date: Tue, 17 Sep 2019 16:24:06 +0000 (+0200) Subject: radv: remove dead shared variables X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b78cce433b09fe78cde05d740075fb8832e44dc;p=mesa.git radv: remove dead shared variables LLVM does this anyway, but for ACO we need to do it in NIR. Reviewed-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c index 918fc82469f..c213b83557a 100644 --- a/src/amd/vulkan/radv_shader.c +++ b/src/amd/vulkan/radv_shader.c @@ -425,7 +425,7 @@ radv_shader_compile_to_nir(struct radv_device *device, NIR_PASS_V(nir, nir_lower_input_attachments, true); NIR_PASS_V(nir, nir_remove_dead_variables, - nir_var_shader_in | nir_var_shader_out | nir_var_system_value); + nir_var_shader_in | nir_var_shader_out | nir_var_system_value | nir_var_mem_shared); NIR_PASS_V(nir, nir_propagate_invariant);