From: Richard Kenner Date: Sun, 22 Oct 1995 11:38:43 +0000 (-0400) Subject: (gen_int_relational): Use 'U' for unsigned constants. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4db7b4ce13e06dcf40320db2689003d9b6bf0b91;p=gcc.git (gen_int_relational): Use 'U' for unsigned constants. From-SVN: r10504 --- diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 890b3d7b50a..a978c198dba 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -1844,7 +1844,7 @@ gen_int_relational (test_code, result, cmp0, cmp1, p_invert) HOST_WIDE_INT new = INTVAL (cmp1) + p_info->const_add; /* If modification of cmp1 caused overflow, we would get the wrong answer if we follow the usual path; - thus, x > 0xffffffffu would turn into x > 0u. */ + thus, x > 0xffffffffU would turn into x > 0U. */ if ((p_info->unsignedp ? (unsigned HOST_WIDE_INT) new > INTVAL (cmp1) : new > INTVAL (cmp1))