(alpha_emit_set_const): Use 'U' for unsigned constants.
From-SVN: r10503
This commit is contained in:
parent
23334240ad
commit
5c71c5b1d5
@ -695,7 +695,7 @@ alpha_emit_set_const (target, mode, c, n)
|
||||
|
||||
if ((HOST_BITS_PER_WIDE_INT != 64
|
||||
|| c >> 31 == -1 || c >> 31 == 0)
|
||||
&& c != 0x80000000u)
|
||||
&& c != 0x80000000U)
|
||||
{
|
||||
HOST_WIDE_INT low = (c & 0xffff) - 2 * (c & 0x8000);
|
||||
HOST_WIDE_INT tmp1 = c - low;
|
||||
|
Loading…
Reference in New Issue
Block a user