diff options
author | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-04-02 08:22:05 -0400 |
---|---|---|
committer | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-04-03 19:13:42 -0400 |
commit | e1ec8109ab32b653c860193798bb13a779e867f5 (patch) | |
tree | f63b52054415bb0c08dea7e19b2c097ffcfa57bf /gas/ChangeLog | |
parent | f73e41ef3703be34db1c7e08271e6ac8bd758144 (diff) | |
download | gdb-e1ec8109ab32b653c860193798bb13a779e867f5.zip gdb-e1ec8109ab32b653c860193798bb13a779e867f5.tar.gz gdb-e1ec8109ab32b653c860193798bb13a779e867f5.tar.bz2 |
bfin: simplify current_inputline
Its not used for anything outside of md_assemble () so it doesn't need to be
extern. While we are there we can replace free () and xmalloc () with
XRESIZEVEC which should be faster.
gas/ChangeLog:
2016-04-03 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* config/bfin-parse.y (current_inputline): Remove definition.
* config/tc-bfin.c (md_assemble): Simplify use of current_inputline.
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 8d6ba9b..d4886c0 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2016-04-03 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + * config/bfin-parse.y (current_inputline): Remove definition. + * config/tc-bfin.c (md_assemble): Simplify use of current_inputline. + +2016-04-03 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + * config/tc-avr.c (md_parse_option): Use strcasecmp () to compare strings. |