From d08e2ccb2723a60efb06719a884168833e9fc05e Mon Sep 17 00:00:00 2001 From: Paul Brook Date: Tue, 26 Apr 2005 18:21:27 +0000 Subject: [PATCH] arm.md (thumb_mulsi3): Use two-operand assembly form. 2005-04-26 Paul Brook * config/arm/arm.md (thumb_mulsi3): Use two-operand assembly form. [[Split portion of a mixed commit.]] From-SVN: r98783.2 --- gcc/ChangeLog | 4 ++++ 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 + + * config/arm/arm.md (thumb_mulsi3): Use two-operand assembly form. + 2005-04-26 Nathan Sidwell * 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")]