Commit cc32b876 by Kazu Hirata Committed by Kazu Hirata

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
parent dbead49c
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> 2001-07-04 Nathan Sidwell <nathan@codesourcery.com>
* cppinit.c (remove_dup_dirs): Inform if a system include * cppinit.c (remove_dup_dirs): Inform if a system include
......
...@@ -2245,7 +2245,7 @@ get_shift_alg (shift_type, shift_mode, count, info) ...@@ -2245,7 +2245,7 @@ get_shift_alg (shift_type, shift_mode, count, info)
{ {
if (count == 15 && shift_type == SHIFT_ASHIFTRT) 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; info->cc_valid_p = 0;
return SHIFT_SPECIAL; return SHIFT_SPECIAL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment