From: Takayuki 'January June' Suwa Date: Sat, 3 Feb 2024 14:18:43 +0000 (+0900) Subject: xtensa: Fix missing mode warning in "*eqne_zero_masked_bits" X-Git-Tag: basepoints/gcc-15~1350 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f722e7886ff46385033d9187e21f49c523083d4;p=thirdparty%2Fgcc.git xtensa: Fix missing mode warning in "*eqne_zero_masked_bits" gcc/ChangeLog: * config/xtensa/xtensa.md (*eqne_zero_masked_bits): Add missing ":SI" to the match_operator. --- diff --git a/gcc/config/xtensa/xtensa.md b/gcc/config/xtensa/xtensa.md index d07e12181199..1a2249b059a0 100644 --- a/gcc/config/xtensa/xtensa.md +++ b/gcc/config/xtensa/xtensa.md @@ -3269,7 +3269,7 @@ (define_insn_and_split "*eqne_zero_masked_bits" [(set (match_operand:SI 0 "register_operand" "=a") - (match_operator 3 "boolean_operator" + (match_operator:SI 3 "boolean_operator" [(and:SI (match_operand:SI 1 "register_operand" "r") (match_operand:SI 2 "const_int_operand" "i")) (const_int 0)]))]