From d2dfe54d6c4c307dd64a5e6bdcc7d1081b17233a Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 14 Jun 2016 13:51:10 +0100 Subject: [PATCH] Fix compile time warning building gas for the NDS32 with gcc v6.1.1 gas * config/tc-nds32.c (nds32_get_align): Avoid left shifting a signed constant. --- gas/ChangeLog | 5 +++++ gas/config/tc-nds32.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 1218ae52142..5bc1de73eae 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2016-06-14 Nick Clifton + + * config/tc-nds32.c (nds32_get_align): Avoid left shifting a + signed constant. + 2016-06-13 Maciej W. Rozycki * config/tc-mips.c (mips_fix_adjustable): Don't convert RELA diff --git a/gas/config/tc-nds32.c b/gas/config/tc-nds32.c index 1d1a80e81ee..643f06d88b4 100644 --- a/gas/config/tc-nds32.c +++ b/gas/config/tc-nds32.c @@ -5610,7 +5610,7 @@ nds32_get_align (addressT address, int align) { addressT mask, new_address; - mask = ~((~0) << align); + mask = ~((~0U) << align); new_address = (address + mask) & (~mask); return (new_address - address); } -- 2.30.2