aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@freesoft.cz>1999-04-13 16:46:47 +0200
committerRichard Henderson <rth@gcc.gnu.org>1999-04-13 07:46:47 -0700
commit6e383e61963c7291c615632fd14b78a503ebb55d (patch)
treed4392252723c530b1f4d417ada32a1825529ab9f
parent813d245a1521388d8bc8ccff29270a664d1273a7 (diff)
downloadgcc-6e383e61963c7291c615632fd14b78a503ebb55d.zip
gcc-6e383e61963c7291c615632fd14b78a503ebb55d.tar.gz
gcc-6e383e61963c7291c615632fd14b78a503ebb55d.tar.bz2
Jan Hubicka <hubicka@freesoft.cz>
Jan Hubicka <hubicka@freesoft.cz> * i386.md (anddi3): Add % constraint. (iordi3, xordi3): Likewise. From-SVN: r26411
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/i386.md6
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6d5772c..396fd7d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index 93e50f2..20901d3 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -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")))]
""
"#"