diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 20c88a7..3c1acb8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 8 07:53:55 2000 Jan Hubicka <jh@suse.cz> + + * i386.md (addqi3_cc): Fix contraints. + Tue Feb 8 01:39:45 2000 Hans-Peter Nilsson <hp@bitrange.com> * function.c (emit_return_into_block): Wrap in #ifdef HAVE_return. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 7624f23..58a5059 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -3239,8 +3239,8 @@ (define_insn "addqi3_cc" [(set (reg:CC 17) (plus:CC (match_operand:QI 1 "nonimmediate_operand" "%0,0") - (match_operand:QI 2 "general_operand" "ri,rm"))) - (set (match_operand:QI 0 "nonimmediate_operand" "=rm,r") + (match_operand:QI 2 "general_operand" "qi,qm"))) + (set (match_operand:QI 0 "nonimmediate_operand" "=qm,q") (plus:QI (match_dup 1) (match_dup 2)))] "ix86_binary_operator_ok (PLUS, QImode, operands)" "add{b}\\t{%2, %0|%0, %2}" |