From ac7a940eba264d3df556df025162df8cbad5da37 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Mon, 30 Mar 2020 12:06:38 -0500 Subject: [PATCH] nir: Handle vec8/16 in gather_ssa_types Reviewed-by: Alyssa Rosenzweig Reviewed-by: Ian Romanick Part-of: --- src/compiler/nir/nir_gather_ssa_types.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compiler/nir/nir_gather_ssa_types.c b/src/compiler/nir/nir_gather_ssa_types.c index a1a7df0ca45..93002d7bff6 100644 --- a/src/compiler/nir/nir_gather_ssa_types.c +++ b/src/compiler/nir/nir_gather_ssa_types.c @@ -112,6 +112,8 @@ nir_gather_ssa_types(nir_function_impl *impl, case nir_op_vec2: case nir_op_vec3: case nir_op_vec4: + case nir_op_vec8: + case nir_op_vec16: for (unsigned i = 0; i < info->num_inputs; i++) { copy_types(alu->src[i].src, &alu->dest.dest, float_types, int_types, &progress); -- 2.30.2