diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-07-04 21:58:04 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-07-04 21:58:04 +0000 |
commit | cc32b876fe1850d5ab119207aa3a229455ba8719 (patch) | |
tree | 8687ab5e88487f92e457b53e847f369db90c62e7 /gcc | |
parent | dbead49c0a4e21b710926a9ee52328337531948d (diff) | |
download | gcc-cc32b876fe1850d5ab119207aa3a229455ba8719.zip gcc-cc32b876fe1850d5ab119207aa3a229455ba8719.tar.gz gcc-cc32b876fe1850d5ab119207aa3a229455ba8719.tar.bz2 |
h8300.c (get_shift_alg): Remove an extra operand from shll.
2001-07-04 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (get_shift_alg): Remove an extra operand
from shll.
From-SVN: r43771
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 26650f6..769cd39 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-07-04 Kazu Hirata <kazu@hxi.com> + + * config/h8300/h8300.c (get_shift_alg): Remove an extra operand + from shll. + 2001-07-04 Nathan Sidwell <nathan@codesourcery.com> * 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 b03f6f8..d46af43 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; } |