diff mbox series

[1/2] xtensa: Fix missing mode warning in "*eqne_INT_MIN"

Message ID 6827e2cd-4966-21be-4861-b99bc0aec8ca@yahoo.co.jp
State New
Headers show
Series [1/2] xtensa: Fix missing mode warning in "*eqne_INT_MIN" | expand

Commit Message

Takayuki 'January June' Suwa July 1, 2023, 5:19 p.m. UTC
gcc/ChangeLog:

	* config/xtensa/xtensa.md (*eqne_INT_MIN):
	Add missing ":SI" to the match_operator.
---
 gcc/config/xtensa/xtensa.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Max Filippov July 2, 2023, 2:26 p.m. UTC | #1
On Sat, Jul 1, 2023 at 10:21 AM Takayuki 'January June' Suwa
<jjsuwa_sys3175@yahoo.co.jp> wrote:
>
> gcc/ChangeLog:
>
>         * config/xtensa/xtensa.md (*eqne_INT_MIN):
>         Add missing ":SI" to the match_operator.
> ---
>  gcc/config/xtensa/xtensa.md | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Regtested for target=xtensa-linux-uclibc, no new regressions.
Committed to master.
diff mbox series

Patch

diff --git a/gcc/config/xtensa/xtensa.md b/gcc/config/xtensa/xtensa.md
index 4b4ab3f5f37..b1af08eba8a 100644
--- a/gcc/config/xtensa/xtensa.md
+++ b/gcc/config/xtensa/xtensa.md
@@ -3191,7 +3191,7 @@ 
 
 (define_insn_and_split "*eqne_INT_MIN"
   [(set (match_operand:SI 0 "register_operand" "=a")
-	(match_operator 2 "boolean_operator"
+	(match_operator:SI 2 "boolean_operator"
 		[(match_operand:SI 1 "register_operand" "r")
 		 (const_int -2147483648)]))]
   "TARGET_ABS"