diff options
author | Nick Clifton <nickc@redhat.com> | 2015-06-17 16:10:36 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-06-17 16:10:36 +0100 |
commit | 5fc177c89526035dfa5ac5329f88b02af01d8ca5 (patch) | |
tree | 62816df54d8d5b0eda18fb8342cd8e701dc80b7a /gas/ChangeLog | |
parent | 2093d2d31460dc351145c4c295ea4a101e0c5aed (diff) | |
download | gdb-5fc177c89526035dfa5ac5329f88b02af01d8ca5.zip gdb-5fc177c89526035dfa5ac5329f88b02af01d8ca5.tar.gz gdb-5fc177c89526035dfa5ac5329f88b02af01d8ca5.tar.bz2 |
Fix compile warnings building previous delta in a 32-bit environment.
* config/tc-arm.c (is_double_a_single): Make conditional upon the
availablity of a 64-bit type. Use this type for the argument and
mantissa.
(double_to_single): Likewise.
* config/tc-arm.c (move_or_literal_pool): Use a 64-bit type for
the constant value, if available. Generate a 64-bit value from a
bignum if supported. Only perform the second optimization for
PR 18500 if the 64-bit type is available.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b4e7d5f..3c00a1e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,14 @@ +2015-06-17 Nick Clifton <nickc@redhat.com> + + * config/tc-arm.c (is_double_a_single): Make conditional upon the + availablity of a 64-bit type. Use this type for the argument and + mantissa. + (double_to_single): Likewise. + * config/tc-arm.c (move_or_literal_pool): Use a 64-bit type for + the constant value, if available. Generate a 64-bit value from a + bignum if supported. Only perform the second optimization for + PR 18500 if the 64-bit type is available. + 2015-06-17 Alessandro Marzocchi <alessandro.marzocchi@gmail.com> PR gas/18500 |