From: Stan Cox Date: Sun, 9 Jun 1996 02:13:52 +0000 (+0000) Subject: (strlensi_unroll4, strlensi_unroll5): Use + not =& for X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d9118e7b3a36b50ffe51c24b04417d43df0c39c4;p=gcc.git (strlensi_unroll4, strlensi_unroll5): Use + not =& for From-SVN: r12253 --- diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 303e99ae35a..adc4ff6c002 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -6857,7 +6857,7 @@ [(set (match_operand:SI 0 "register_operand" "=r,r") (unspec:SI [(mem:BLK (match_operand:SI 3 "register_operand" "0,0")) (match_operand:SI 1 "immediate_operand" "i,i") - (match_operand:SI 2 "register_operand" "=&q,&!r")] 0)) + (match_operand:SI 2 "register_operand" "+q,!r")] 0)) (clobber (match_dup 2))] "(TARGET_USE_ANY_REG && optimize > 1)" "* return output_strlen_unroll (operands);") @@ -6866,7 +6866,7 @@ [(set (match_operand:SI 0 "register_operand" "=r") (unspec:SI [(mem:BLK (match_operand:SI 3 "register_operand" "0")) (match_operand:SI 1 "immediate_operand" "i") - (match_operand:SI 2 "register_operand" "=&q")] 0)) + (match_operand:SI 2 "register_operand" "+q")] 0)) (clobber (match_dup 2))] "(TARGET_USE_Q_REG && optimize > 1)" "* return output_strlen_unroll (operands);"