diff options
author | Nick Clifton <nickc@redhat.com> | 2015-08-11 10:07:21 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-08-11 10:07:21 +0100 |
commit | eff0bc54a343fed1dd152f0a1b455b2438f76e6f (patch) | |
tree | 611de4291e59037fc9b3112d72a3199fa41241db /gas/ChangeLog | |
parent | e66c3c2568fcfebc931bc18d35055c7f784133ce (diff) | |
download | gdb-eff0bc54a343fed1dd152f0a1b455b2438f76e6f.zip gdb-eff0bc54a343fed1dd152f0a1b455b2438f76e6f.tar.gz gdb-eff0bc54a343fed1dd152f0a1b455b2438f76e6f.tar.bz2 |
Fix compile time warning messages about constant expressions where a value is being shifted into bit 31.
PR gas/18765
* config/tc-arm.c (move_or_literal_pool): Use U suffix to remove
compile time warnings about constant expressions being shifted
into bit 31.
(do_iwmmxt_wldstd): Likewise.
(do_iwmmxt_wrwrwr_or_imm5): Likewise.
(md_assemble): Likewise.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 2e5aa4f..9cf4ab4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,13 @@ 2015-08-11 Nick Clifton <nickc@redhat.com> + PR gas/18765 + * config/tc-arm.c (move_or_literal_pool): Use U suffix to remove + compile time warnings about constant expressions being shifted + into bit 31. + (do_iwmmxt_wldstd): Likewise. + (do_iwmmxt_wrwrwr_or_imm5): Likewise. + (md_assemble): Likewise. + PR gas/18574 * config/tc-msp430.c (msp430_operands): Rewrite if statements to remove redundant checks. |