From: Richard Kenner Date: Sun, 22 Oct 1995 11:38:18 +0000 (-0400) Subject: (alpha_emit_set_const): Use 'U' for unsigned constants. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5c71c5b1d544bb47bd63f7f4df025d8ba2c310a5;p=gcc.git (alpha_emit_set_const): Use 'U' for unsigned constants. From-SVN: r10503 --- diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 541de77503f..067d72f4b7b 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -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;