h8300.c (get_shift_alg): Remove an extra operand from shll.
authorKazu Hirata <kazu@hxi.com>
Wed, 4 Jul 2001 21:58:04 +0000 (21:58 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 4 Jul 2001 21:58:04 +0000 (21:58 +0000)
2001-07-04  Kazu Hirata  <kazu@hxi.com>

* config/h8300/h8300.c (get_shift_alg): Remove an extra operand
from shll.

From-SVN: r43771

gcc/ChangeLog
gcc/config/h8300/h8300.c

index 26650f67faef3e7c9d301366c9e42777e3578ac6..769cd398b553adfbded6df0810da926b45a053e8 100644 (file)
@@ -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
index b03f6f852add3bdde38ea5eaa9cb935c49dfacb8..d46af431b1fd382acf2bcc791ec0c8f769a4e012 100644 (file)
@@ -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;
            }