Jan Hubicka <hubicka@freesoft.cz>
authorJan Hubicka <hubicka@freesoft.cz>
Tue, 13 Apr 1999 14:46:47 +0000 (16:46 +0200)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 13 Apr 1999 14:46:47 +0000 (07:46 -0700)
Jan Hubicka <hubicka@freesoft.cz>
        * i386.md (anddi3): Add % constraint.
        (iordi3, xordi3): Likewise.

From-SVN: r26411

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

index 6d5772c926d565dd2ee7d01e6eb5b3d4f7dd3399..396fd7d280a719f3c5a6cc549b4becbd4d170e89 100644 (file)
@@ -1,3 +1,8 @@
+Tue Apr 13 14:45:17 1999  Jan Hubicka <hubicka@freesoft.cz>
+
+       * i386.md (anddi3): Add % constraint.
+       (iordi3, xordi3): Likewise.
+
 Tue Apr 13 14:29:58 1999  Jan Hubicka <hubicka@freesoft.cz>
 
        * i386.md (extendhisi2): Output mov instead of cw instruction for K6
index 93e50f2e0376398df9b3cefb897938aa45ea4b0e..20901d32be9ec0e4707d68a44046e48f6ba6163d 100644 (file)
@@ -4620,7 +4620,7 @@ byte_xor_operation:
 
 (define_insn "anddi3"
   [(set (match_operand:DI 0 "general_operand" "=&r,&ro")
-       (and:DI (match_operand:DI 1 "general_operand" "0,0")
+       (and:DI (match_operand:DI 1 "general_operand" "%0,0")
                (match_operand:DI 2 "general_operand" "oriF,riF")))]
   ""
   "#"
@@ -4629,7 +4629,7 @@ byte_xor_operation:
 
 (define_insn "iordi3"
   [(set (match_operand:DI 0 "general_operand" "=&r,&ro")
-       (ior:DI (match_operand:DI 1 "general_operand" "0,0")
+       (ior:DI (match_operand:DI 1 "general_operand" "%0,0")
                (match_operand:DI 2 "general_operand" "oriF,riF")))]
   ""
   "#"
@@ -4637,7 +4637,7 @@ byte_xor_operation:
 
 (define_insn "xordi3"
   [(set (match_operand:DI 0 "general_operand" "=&r,&ro")
-       (xor:DI (match_operand:DI 1 "general_operand" "0,0")
+       (xor:DI (match_operand:DI 1 "general_operand" "%0,0")
                (match_operand:DI 2 "general_operand" "oriF,riF")))]
   ""
   "#"