Commit 4fe8523b by Jan Hubicka Committed by Jan Hubicka

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

From-SVN: r46632
parent 7968bdb0
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
......
......@@ -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;")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment