mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 09:49:11 +08:00
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:
parent
c78358d473
commit
4bd75896d3
@ -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>
|
Sat Dec 5 15:14:52 1998 Jason Merrill <jason@yorick.cygnus.com>
|
||||||
|
|
||||||
* i960.h (BOOL_TYPE_SIZE): Define.
|
* i960.h (BOOL_TYPE_SIZE): Define.
|
||||||
|
@ -1178,7 +1178,7 @@ alpha_emit_set_const_1 (target, mode, c, n)
|
|||||||
for (; bits > 0; bits--)
|
for (; bits > 0; bits--)
|
||||||
if ((temp = (alpha_emit_set_const
|
if ((temp = (alpha_emit_set_const
|
||||||
(subtarget, mode,
|
(subtarget, mode,
|
||||||
(unsigned HOST_WIDE_INT) c >> bits, i))) != 0
|
(unsigned HOST_WIDE_INT) (c >> bits), i))) != 0
|
||||||
|| ((temp = (alpha_emit_set_const
|
|| ((temp = (alpha_emit_set_const
|
||||||
(subtarget, mode,
|
(subtarget, mode,
|
||||||
((unsigned HOST_WIDE_INT) c) >> bits, i)))
|
((unsigned HOST_WIDE_INT) c) >> bits, i)))
|
||||||
|
Loading…
Reference in New Issue
Block a user