From: Nick Clifton Date: Tue, 14 Jun 2016 12:51:10 +0000 (+0100) Subject: Fix compile time warning building gas for the NDS32 with gcc v6.1.1 X-Git-Tag: binutils-2_27~242 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2dfe54d6c4c307dd64a5e6bdcc7d1081b17233a;p=external%2Fbinutils.git 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. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 1218ae5..5bc1de7 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 1d1a80e..643f06d 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); }