diff options
author | Trevor Saunders <tbsaunde@tbsaunde.org> | 2016-02-13 22:00:07 -0500 |
---|---|---|
committer | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-03-22 19:06:39 -0400 |
commit | 8860a416a2357aa66a03218c6076b95ef8052ccf (patch) | |
tree | 496266d5cf13fa6ddd41b8236141e2aca1eef7f1 /gas/ChangeLog | |
parent | 34b9f7292f9c75d09c169a293c1f021eb97517ca (diff) | |
download | gdb-8860a416a2357aa66a03218c6076b95ef8052ccf.zip gdb-8860a416a2357aa66a03218c6076b95ef8052ccf.tar.gz gdb-8860a416a2357aa66a03218c6076b95ef8052ccf.tar.bz2 |
replace some raw xmalloc / xrealloc with the XNEW* macros
This increases consistancy of how we allocate memory, and always casting the
result to the proper type. It also helps make sure we get any use of sizeof on
the result type correct.
gas/ChangeLog:
2016-03-22 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* listing.c (listing_message): Use XNEW style allocation macros.
* read.c (read_a_source_file): Likewise.
(read_symbol_name): Likewise.
(s_mri_common): Likewise.
(assign_symbol): Likewise.
(s_reloc): Likewise.
(emit_expr_with_reloc): Likewise.
(s_incbin): Likewise.
(s_include): Likewise.
* sb.c (sb_build): Likewise.
(sb_check): Likewise.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 24cf393..4aa1292 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,17 @@ +2016-03-22 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + + * listing.c (listing_message): Use XNEW style allocation macros. + * read.c (read_a_source_file): Likewise. + (read_symbol_name): Likewise. + (s_mri_common): Likewise. + (assign_symbol): Likewise. + (s_reloc): Likewise. + (emit_expr_with_reloc): Likewise. + (s_incbin): Likewise. + (s_include): Likewise. + * sb.c (sb_build): Likewise. + (sb_check): Likewise. + 2016-03-22 Alan Modra <amodra@gmail.com> * write.c (record_alignment): Revert 2016-02-18 change. |