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
This commit is contained in:
Kazu Hirata 2001-07-04 21:58:04 +00:00 committed by Kazu Hirata
parent dbead49c0a
commit cc32b876fe
2 changed files with 6 additions and 1 deletions

View 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

View 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;
}