* config/h8300/h8300.c (get_shift_alg): Fix a typo.
authorKazu Hirata <kazu@cs.umass.edu>
Fri, 24 Jan 2003 17:19:47 +0000 (17:19 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 24 Jan 2003 17:19:47 +0000 (17:19 +0000)
From-SVN: r61718

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

index f054621f3843987423ff24da1f8444730c0df025..4a558ad86b16bad80a048ee341a1c6043972c1d3 100644 (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.
index 624f9d8fafb9af3660fa373476f955117e3964e8..ee0878d42f99390cb152585b34e72b2fb7501090 100644 (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;