alpha.c (alpha_emit_set_const_1): Fix parenthesis error in -c << n case.
authorRichard Henderson <rth@cygnus.com>
Sat, 5 Dec 1998 18:51:00 +0000 (10:51 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Sat, 5 Dec 1998 18:51:00 +0000 (10:51 -0800)
        * alpha.c (alpha_emit_set_const_1): Fix parenthesis error
        in -c << n case.

From-SVN: r24111

gcc/ChangeLog
gcc/config/alpha/alpha.c

index 9e5b12a10b4ba917d54c4b86a7a8ee7b2cf5b288..af1fdbbe3a813b7744fb18676014e806ef3765dd 100644 (file)
@@ -1,3 +1,8 @@
+Sat Dec  5 18:48:25 1998  Richard Henderson  <rth@cygnus.com>
+
+       * alpha.c (alpha_emit_set_const_1): Fix parenthesis error
+       in -c << n case.
+
 Sat Dec  5 15:14:52 1998  Jason Merrill  <jason@yorick.cygnus.com>
 
        * i960.h (BOOL_TYPE_SIZE): Define.
index 04a5c402da20246bf1abc9f7064ab9829495e99d..56aadf6d2b52d3d837aae37db15a98772ae99ffd 100644 (file)
@@ -1178,7 +1178,7 @@ alpha_emit_set_const_1 (target, mode, c, n)
        for (; bits > 0; bits--)
          if ((temp = (alpha_emit_set_const
                       (subtarget, mode,
-                       (unsigned HOST_WIDE_INT) c >> bits, i))) != 0
+                       (unsigned HOST_WIDE_INT) (c >> bits), i))) != 0
              || ((temp = (alpha_emit_set_const
                          (subtarget, mode,
                           ((unsigned HOST_WIDE_INT) c) >> bits, i)))