From 3e671d9670431fa492329b6ceca88fc332797fa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Thu, 30 Apr 2026 10:30:49 +0200 Subject: [PATCH] nir/lower_bit_size: skip conversion for more opcodes --- src/compiler/nir/nir_lower_bit_size.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/compiler/nir/nir_lower_bit_size.c b/src/compiler/nir/nir_lower_bit_size.c index a9c9f9d21fb..0cfbfbd2c33 100644 --- a/src/compiler/nir/nir_lower_bit_size.c +++ b/src/compiler/nir/nir_lower_bit_size.c @@ -62,6 +62,9 @@ before_conversion(nir_builder *bld, nir_alu_type type, unsigned bit_size, nir_de case nir_op_ishl: case nir_op_isub: case nir_op_ixor: + case nir_op_inot: + case nir_op_bcsel: + case nir_op_bitfield_select: case nir_op_mov: break; default: