From: Jan Hubicka Date: Tue, 13 Apr 1999 14:46:47 +0000 (+0200) Subject: Jan Hubicka X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6e383e61963c7291c615632fd14b78a503ebb55d;p=gcc.git Jan Hubicka Jan Hubicka * i386.md (anddi3): Add % constraint. (iordi3, xordi3): Likewise. From-SVN: r26411 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6d5772c926d..396fd7d280a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Apr 13 14:45:17 1999 Jan Hubicka + + * i386.md (anddi3): Add % constraint. + (iordi3, xordi3): Likewise. + Tue Apr 13 14:29:58 1999 Jan Hubicka * 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 93e50f2e037..20901d32be9 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")))] "" "#"