diff options
| author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-26 18:21:27 +0000 |
|---|---|---|
| committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-26 18:21:27 +0000 |
| commit | 20c4e896779999a1a77b66918a18a2379a2b5fe3 (patch) | |
| tree | 33470daa849309b27b2e3d01b85156df622e107c | |
| parent | 7f81c1620a0c760a7fd9b38a90af9970af0cc675 (diff) | |
| download | ppe42-gcc-20c4e896779999a1a77b66918a18a2379a2b5fe3.tar.gz ppe42-gcc-20c4e896779999a1a77b66918a18a2379a2b5fe3.zip | |
2005-04-26 Paul Brook <paul@codesourcery.com>
* config/arm/arm.md (thumb_mulsi3): Use two-operand assembly form.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98783 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/arm/arm.md | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6be43297069..2ea39561f1f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-04-26 Paul Brook <paul@codesourcery.com> + + * config/arm/arm.md (thumb_mulsi3): Use two-operand assembly form. + 2005-04-26 Nathan Sidwell <nathan@codesourcery.com> * config/mips.mips.c (mips_legitimize_tls_address): Use diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index 6dc46aecb35..01d12f41e8e 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -1077,9 +1077,9 @@ "TARGET_THUMB" "* if (which_alternative < 2) - return \"mov\\t%0, %1\;mul\\t%0, %0, %2\"; + return \"mov\\t%0, %1\;mul\\t%0, %2\"; else - return \"mul\\t%0, %0, %2\"; + return \"mul\\t%0, %2\"; " [(set_attr "length" "4,4,2") (set_attr "insn" "mul")] |

