* i386.md (movti_rex64 splitter): Fix condition.

From-SVN: r46632
This commit is contained in:
Jan Hubicka 2001-10-30 11:03:42 +01:00 committed by Jan Hubicka
parent 7968bdb0d4
commit 4fe8523bca
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Tue Oct 30 11:02:31 CET 2001 Jan Hubicka <jh@suse.cz>
* i386.md (movti_rex64 splitter): Fix condition.
2001-10-29 Zack Weinberg <zack@codesourcery.com>
* configure.in: Do not assume that gas's version number is the

View File

@ -17985,8 +17985,8 @@
(define_split
[(set (match_operand:TI 0 "nonimmediate_operand" "")
(match_operand:TI 1 "general_operand" ""))]
"reload_completed && GENERAL_REG_P (operands[0])
&& GENERAL_REG_P (operands[1])"
"reload_completed && !SSE_REG_P (operands[0])
&& !SSE_REG_P (operands[1])"
[(const_int 0)]
"ix86_split_long_move (operands); DONE;")