aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2015-05-22 14:27:36 +0100
committerNick Clifton <nickc@redhat.com>2015-05-22 14:27:36 +0100
commit29798047afaa22335a504280a5bbdbafe2b1b63d (patch)
treed05ce9666fb38ac80a84eee00d645e0be2d2dca5 /gas
parenta4ea0946c3f1badd6755b85b4e50e2ec4841e69c (diff)
downloadfsf-binutils-gdb-29798047afaa22335a504280a5bbdbafe2b1b63d.zip
fsf-binutils-gdb-29798047afaa22335a504280a5bbdbafe2b1b63d.tar.gz
fsf-binutils-gdb-29798047afaa22335a504280a5bbdbafe2b1b63d.tar.bz2
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.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog6
-rw-r--r--gas/read.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index cc0ad42..f3a30d2 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,9 @@
+2015-05-22 Nick Clifton <nickc@redhat.com>
+
+ PR gas/18446
+ * read.c (output_big_sleb128): Use U suffix to prevent compile
+ time warning.
+
2015-05-19 Jiong Wang <jiong.wang@arm.com>
* config/tc-aarch64.c (process_movw_reloc_info): Sort relocation case
diff --git a/gas/read.c b/gas/read.c
index 2224c0e..816c255 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++;