From: Nick Clifton Date: Fri, 22 May 2015 13:27:36 +0000 (+0100) Subject: Fixes: "gas/read.c:5087:12: error: left shift of negative" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=29798047afaa22335a504280a5bbdbafe2b1b63d;p=binutils-gdb.git Fixes: "gas/read.c:5087:12: error: left shift of negative" PR gas/18446 * read.c (output_big_sleb128): Use U suffix to prevent compile time warning. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index cc0ad425b63..f3a30d2624b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2015-05-22 Nick Clifton + + PR gas/18446 + * read.c (output_big_sleb128): Use U suffix to prevent compile + time warning. + 2015-05-19 Jiong Wang * config/tc-aarch64.c (process_movw_reloc_info): Sort relocation case diff --git a/gas/read.c b/gas/read.c index 2224c0ed241..816c255bf26 100644 --- a/gas/read.c +++ b/gas/read.c @@ -5084,7 +5084,7 @@ output_big_sleb128 (char *p, LITTLENUM_TYPE *bignum, int size) { /* Sign-extend VAL. */ if (val & (1 << (loaded - 1))) - val |= ~0 << loaded; + val |= ~0U << loaded; if (orig) *p = val & 0x7f; p++;