diff options
author | Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp> | 2024-02-03 23:18:43 +0900 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2024-02-04 13:25:10 -0800 |
commit | 3f722e7886ff46385033d9187e21f49c523083d4 (patch) | |
tree | 18bf335b4c675e0b98db2d30b0ff6ec84f7c36f4 /gcc/config/xtensa | |
parent | 7c2c7dd24bd93cd9cb8a6e54a4d11850982665fd (diff) | |
download | gcc-3f722e7886ff46385033d9187e21f49c523083d4.zip gcc-3f722e7886ff46385033d9187e21f49c523083d4.tar.gz gcc-3f722e7886ff46385033d9187e21f49c523083d4.tar.bz2 |
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.
Diffstat (limited to 'gcc/config/xtensa')
-rw-r--r-- | gcc/config/xtensa/xtensa.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/xtensa/xtensa.md b/gcc/config/xtensa/xtensa.md index d07e121..1a2249b 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)]))] |