From: Kazu Hirata Date: Wed, 4 Jul 2001 21:58:04 +0000 (+0000) Subject: h8300.c (get_shift_alg): Remove an extra operand from shll. X-Git-Tag: prereleases/libstdc++-3.0.95~3473 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc32b876fe1850d5ab119207aa3a229455ba8719;p=thirdparty%2Fgcc.git h8300.c (get_shift_alg): Remove an extra operand from shll. 2001-07-04 Kazu Hirata * config/h8300/h8300.c (get_shift_alg): Remove an extra operand from shll. From-SVN: r43771 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 26650f67faef..769cd398b553 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-07-04 Kazu Hirata + + * config/h8300/h8300.c (get_shift_alg): Remove an extra operand + from shll. + 2001-07-04 Nathan Sidwell * cppinit.c (remove_dup_dirs): Inform if a system include diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index b03f6f852add..d46af431b1fd 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -2245,7 +2245,7 @@ get_shift_alg (shift_type, shift_mode, count, info) { if (count == 15 && shift_type == SHIFT_ASHIFTRT) { - info->special = "shll\t%t0,%t0\n\tsubx\t%t0,%t0\n\tmov.b\t%t0,%s0"; + info->special = "shll\t%t0\n\tsubx\t%t0,%t0\n\tmov.b\t%t0,%s0"; info->cc_valid_p = 0; return SHIFT_SPECIAL; }