Commit 4bd75896 by Richard Henderson Committed by Richard Henderson

alpha.c (alpha_emit_set_const_1): Fix parenthesis error in -c << n case.

        * alpha.c (alpha_emit_set_const_1): Fix parenthesis error
        in -c << n case.

From-SVN: r24111
parent c78358d4
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.
......
......@@ -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)))
......
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