diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-22 07:38:43 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-22 07:38:43 -0400 |
commit | 4db7b4ce13e06dcf40320db2689003d9b6bf0b91 (patch) | |
tree | 989f13de04e77b92d95f120028dfce7ec151e6c0 | |
parent | 5c71c5b1d544bb47bd63f7f4df025d8ba2c310a5 (diff) | |
download | gcc-4db7b4ce13e06dcf40320db2689003d9b6bf0b91.zip gcc-4db7b4ce13e06dcf40320db2689003d9b6bf0b91.tar.gz gcc-4db7b4ce13e06dcf40320db2689003d9b6bf0b91.tar.bz2 |
(gen_int_relational): Use 'U' for unsigned constants.
From-SVN: r10504
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 890b3d7..a978c19 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)) |