nir/print: Fix printing booleans with bit_size>1

Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28187>
This commit is contained in:
Konstantin Seurer 2024-03-11 08:55:41 +01:00 committed by Marge Bot
parent 27dba224d3
commit 1ff8659f41
1 changed files with 3 additions and 3 deletions

View File

@ -261,8 +261,10 @@ print_const_from_load(nir_load_const_instr *instr, print_state *state, nir_alu_t
const unsigned bit_size = instr->def.bit_size;
const unsigned num_components = instr->def.num_components;
type = nir_alu_type_get_base_type(type);
/* There's only one way to print booleans. */
if (bit_size == 1) {
if (bit_size == 1 || type == nir_type_bool) {
fprintf(fp, "(");
for (unsigned i = 0; i < num_components; i++) {
if (i != 0)
@ -275,8 +277,6 @@ print_const_from_load(nir_load_const_instr *instr, print_state *state, nir_alu_t
fprintf(fp, "(");
type = nir_alu_type_get_base_type(type);
if (type != nir_type_invalid) {
for (unsigned i = 0; i < num_components; i++) {
const nir_const_value *v = &instr->value[i];