* config/h8300/h8300.c (get_shift_alg): Fix a typo.

From-SVN: r61718
This commit is contained in:
Kazu Hirata 2003-01-24 17:19:47 +00:00 committed by Kazu Hirata
parent 3de9870034
commit a38b3eea74
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-01-24 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (get_shift_alg): Fix a typo.
2003-01-24 Ulrich Weigand <uweigand@de.ibm.com>
* configure.in (HAVE_AS_TLS): Add s390-*-* and s390x-*-* cases.

View File

@ -2836,7 +2836,7 @@ get_shift_alg (shift_type, shift_mode, count, info)
}
}
else if ((8 <= count && count <= 13)
|| (TARGET_H8300S & count == 14))
|| (TARGET_H8300S && count == 14))
{
info->remainder = count - 8;