* i386.md (movti_rex64 splitter): Fix condition.
authorJan Hubicka <jh@suse.cz>
Tue, 30 Oct 2001 10:03:42 +0000 (11:03 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 30 Oct 2001 10:03:42 +0000 (10:03 +0000)
From-SVN: r46632

gcc/ChangeLog
gcc/config/i386/i386.md

index c9cd68e..f0659d2 100644 (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
index 7c12269..4365253 100644 (file)
 (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;")