diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-19 17:28:48 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-19 17:28:48 +0000 |
commit | 030c91c8b17c278a78a75cc403239be78b44a86e (patch) | |
tree | 00dc2fb276ad500dee685e4401802e4f83482096 /gcc/config | |
parent | 930bdacf3661fb4be93fae6554af8a706b9070ca (diff) | |
download | gcc-030c91c8b17c278a78a75cc403239be78b44a86e.tar.gz |
* config/mips/mips.md (mulsidi3_32bit_r4000): Fix the clobber list.
(umulsidi3_32bit_r4000): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84925 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/mips/mips.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 3ffa7f776be..407172d7963 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") |