From: Daniel Schürmann Date: Fri, 14 Feb 2020 09:12:03 +0000 (+0100) Subject: nir: fix unpack_64_4x16 in lower_alu_to_scalar() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc69738b0fc787fd9183a815ce43c06e005ec4b3;p=mesa.git nir: fix unpack_64_4x16 in lower_alu_to_scalar() Reviewed-by: Rhys Perry Reviewed-By: Timur Kristóf Part-of: --- diff --git a/src/compiler/nir/nir_lower_alu_to_scalar.c b/src/compiler/nir/nir_lower_alu_to_scalar.c index e919370ec1a..e3258429b58 100644 --- a/src/compiler/nir/nir_lower_alu_to_scalar.c +++ b/src/compiler/nir/nir_lower_alu_to_scalar.c @@ -208,6 +208,7 @@ lower_alu_instr_scalar(nir_builder *b, nir_instr *instr, void *_data) } case nir_op_unpack_64_2x32: + case nir_op_unpack_64_4x16: case nir_op_unpack_32_2x16: return NULL;