From: Maciej W. Rozycki Date: Mon, 19 Jul 2004 17:28:48 +0000 (+0000) Subject: mips.md (mulsidi3_32bit_r4000): Fix the clobber list. X-Git-Tag: releases/gcc-4.0.0~6480 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b06f03362fe56b4a81a506f6c7fc6a5bf721d905;p=thirdparty%2Fgcc.git mips.md (mulsidi3_32bit_r4000): Fix the clobber list. * config/mips/mips.md (mulsidi3_32bit_r4000): Fix the clobber list. (umulsidi3_32bit_r4000): Likewise. From-SVN: r84925 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7217195f0696..04038313a1bd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-07-19 Maciej W. Rozycki + + * config/mips/mips.md (mulsidi3_32bit_r4000): Fix the clobber list. + (umulsidi3_32bit_r4000): Likewise. + 2004-07-19 Nathan Sidwell * vec.h: Propagate location information properly. diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 3ffa7f776bee..407172d79631 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -1449,8 +1449,7 @@ (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "d")) (sign_extend:DI (match_operand:SI 2 "register_operand" "d")))) - (clobber (match_scratch:DI 3 "=l")) - (clobber (match_scratch:DI 4 "=h"))] + (clobber (match_scratch:DI 3 "=x"))] "!TARGET_64BIT && TARGET_FIX_R4000" "mult\t%1,%2\;mflo\t%L0;mfhi\t%M0" [(set_attr "type" "imul") @@ -1567,8 +1566,7 @@ (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "d")) (zero_extend:DI (match_operand:SI 2 "register_operand" "d")))) - (clobber (match_scratch:DI 3 "=l")) - (clobber (match_scratch:DI 4 "=h"))] + (clobber (match_scratch:DI 3 "=x"))] "!TARGET_64BIT && TARGET_FIX_R4000" "multu\t%1,%2\;mflo\t%L0;mfhi\t%M0" [(set_attr "type" "imul")