nir/lower_bit_size: skip conversion for more opcodes

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41388>
This commit is contained in:
Daniel Schürmann 2026-04-30 10:30:49 +02:00 committed by Marge Bot
parent 01c9311cfb
commit 3749db73f4

View file

@ -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: