From 36807b7c8c78b09468977d92abb1c745bcc9896e Mon Sep 17 00:00:00 2001 From: kkojima Date: Wed, 10 Jun 2015 21:45:37 +0000 Subject: [PATCH] * config/sh/sh.md (tstsi_t): Add '?' modifier to 'r' alternative of the 2nd operand to fix failures for gcc.target/sh/pr49263-2.c with -mlra. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224349 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/config/sh/sh.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 32fce15..c874789 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-06-10 Kaz Kojima + + * config/sh/sh.md (tstsi_t): Add '?' modifier to 'r' alternative + of the second operand. + 2015-06-10 Uros Bizjak PR target/66473 diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index 33241a8..e88d249 100644 --- a/gcc/config/sh/sh.md +++ b/gcc/config/sh/sh.md @@ -616,7 +616,7 @@ (define_insn_and_split "tstsi_t" [(set (reg:SI T_REG) (eq:SI (and:SI (match_operand:SI 0 "arith_reg_operand" "%z,r") - (match_operand:SI 1 "arith_or_int_operand" "K08,r")) + (match_operand:SI 1 "arith_or_int_operand" "K08,?r")) (const_int 0)))] "TARGET_SH1 && (can_create_pseudo_p () || arith_reg_operand (operands[1], SImode) -- 2.7.4