From 5c71c5b1d544bb47bd63f7f4df025d8ba2c310a5 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 22 Oct 1995 07:38:18 -0400 Subject: [PATCH] (alpha_emit_set_const): Use 'U' for unsigned constants. From-SVN: r10503 --- gcc/config/alpha/alpha.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2