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
This commit is contained in:
Richard Henderson 1998-12-05 10:51:00 -08:00 committed by Richard Henderson
parent c78358d473
commit 4bd75896d3
2 changed files with 6 additions and 1 deletions

View 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.

View 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)))