diff options
Diffstat (limited to 'src/compiler/nir/nir_search.c')
-rw-r--r-- | src/compiler/nir/nir_search.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_search.c b/src/compiler/nir/nir_search.c index 50f5464cef8..8578ca53c87 100644 --- a/src/compiler/nir/nir_search.c +++ b/src/compiler/nir/nir_search.c @@ -110,7 +110,8 @@ nir_op_matches_search_op(nir_op nop, uint16_t sop) #define MATCH_BCONV_CASE(op) \ case nir_search_op_##op: \ - return nop == nir_op_##op##32; + return nop == nir_op_##op##1 || \ + nop == nir_op_##op##32; switch (sop) { MATCH_FCONV_CASE(i2f) @@ -160,6 +161,7 @@ nir_op_for_search_op(uint16_t sop, unsigned bit_size) #define RET_BCONV_CASE(op) \ case nir_search_op_##op: \ switch (bit_size) { \ + case 1: return nir_op_##op##1; \ case 32: return nir_op_##op##32; \ default: unreachable("Invalid bit size"); \ } |