From dc69738b0fc787fd9183a815ce43c06e005ec4b3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Sch=C3=BCrmann?= Date: Fri, 14 Feb 2020 10:12:03 +0100 Subject: [PATCH] nir: fix unpack_64_4x16 in lower_alu_to_scalar() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Rhys Perry Reviewed-By: Timur Kristóf Part-of: --- src/compiler/nir/nir_lower_alu_to_scalar.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.30.2