diff options
author | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-05-23 07:42:14 -0400 |
---|---|---|
committer | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-05-26 08:46:01 -0400 |
commit | 81cead6f5e9b765788483ad66f490f7540264eba (patch) | |
tree | c26c248902ffa0c4ef4ccc61950acfa3e52f2732 /gas/ChangeLog | |
parent | 79052aaec9ec394bb6c8ec9d68e7e86d5838e42b (diff) | |
download | fsf-binutils-gdb-81cead6f5e9b765788483ad66f490f7540264eba.zip fsf-binutils-gdb-81cead6f5e9b765788483ad66f490f7540264eba.tar.gz fsf-binutils-gdb-81cead6f5e9b765788483ad66f490f7540264eba.tar.bz2 |
metag: make an array's type unsigned char[]
It contains values between 128 and 256 which fit in an unsigned char, but not a
signed char, so we should explicitly use unsigned char to not rely on how these
values are converted to signed char.
gas/ChangeLog:
2016-05-26 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* config/tc-metag.c (metag_handle_align): Make the type of noop
unsigned char.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ae4de64..b21e332 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2016-05-26 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + * config/tc-metag.c (metag_handle_align): Make the type of noop + unsigned char. + +2016-05-26 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + * config/tc-rx.c (md_convert_frag): Make the type of reloc_type bfd_reloc_code_real_type. |