mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-09 10:27:10 +08:00
* sh.md (movv8qi_i+2): Don't split if source is -1.
From-SVN: r58165
This commit is contained in:
parent
b8db17af92
commit
c034672ab8
@ -1,3 +1,7 @@
|
||||
Tue Oct 15 16:51:04 2002 J"orn Rennecke <joern.rennecke@superh.com>
|
||||
|
||||
* sh.md (movv8qi_i+2): Don't split if source is -1.
|
||||
|
||||
2002-10-15 Janis Johnson <janis187@us.ibm.com>
|
||||
|
||||
* doc/install.texi: Formatting changes for conformance to HTML 4.01.
|
||||
|
@ -9149,7 +9149,9 @@
|
||||
&& VECTOR_MODE_SUPPORTED_P (GET_MODE (operands[0]))
|
||||
&& GET_MODE_SIZE (GET_MODE (operands[0])) == 8
|
||||
&& (XVECEXP (operands[1], 0, 0) != const0_rtx
|
||||
|| XVECEXP (operands[1], 0, 1) != const0_rtx)"
|
||||
|| XVECEXP (operands[1], 0, 1) != const0_rtx)
|
||||
&& (XVECEXP (operands[1], 0, 0) != constm1_rtx
|
||||
|| XVECEXP (operands[1], 0, 1) != constm1_rtx)"
|
||||
[(set (match_dup 0) (match_dup 1))
|
||||
(match_dup 2)]
|
||||
"
|
||||
|
Loading…
Reference in New Issue
Block a user