From 7b291a33d418bbabc0036798148cc197e7428f5c Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Thu, 26 Jun 2025 17:14:23 +0100 Subject: [PATCH] nir/search: fix dumping of conversions Signed-off-by: Rhys Perry Reviewed-by: Georg Lehmann Part-of: --- src/compiler/nir/nir_search.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/compiler/nir/nir_search.c b/src/compiler/nir/nir_search.c index 8150c04e238..f766b37aafd 100644 --- a/src/compiler/nir/nir_search.c +++ b/src/compiler/nir/nir_search.c @@ -606,8 +606,12 @@ dump_value(const nir_algebraic_table *table, const nir_search_value *val) CASE(b2f) CASE(b2i) CASE(i2i) + CASE(u2u) + CASE(f2f) CASE(f2i) + CASE(f2u) CASE(i2f) + CASE(u2f) #undef CASE default: fprintf(stderr, "%s", nir_op_infos[expr->opcode].name);