From: Eric Anholt Date: Thu, 23 Jul 2020 20:39:56 +0000 (-0700) Subject: nir/opt_undef: Handle a couple more normal store intrinsics. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a29b7b6ff5c2a3531cf6cac4aa8bda4f76d801ee;p=mesa.git nir/opt_undef: Handle a couple more normal store intrinsics. They've got the value in the same slot as the others, and the same undef behavior should be fine. Reviewed-by: Rhys Perry Part-of: --- diff --git a/src/compiler/nir/nir_opt_undef.c b/src/compiler/nir/nir_opt_undef.c index 0edd7ae6ee0..e03e5b88efc 100644 --- a/src/compiler/nir/nir_opt_undef.c +++ b/src/compiler/nir/nir_opt_undef.c @@ -112,6 +112,8 @@ opt_undef_store(nir_intrinsic_instr *intrin) case nir_intrinsic_store_per_vertex_output: case nir_intrinsic_store_ssbo: case nir_intrinsic_store_shared: + case nir_intrinsic_store_global: + case nir_intrinsic_store_scratch: arg_index = 0; break; default: