diff options
author | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-06-04 16:46:58 -0400 |
---|---|---|
committer | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-06-25 11:50:33 -0400 |
commit | 7c2c4aa12f4931fb79f94d787ef60e88960bb2a7 (patch) | |
tree | b642abc53b30d4c773187223d02e8c099fc10639 /gas | |
parent | 9e8a8ea8feadb0d3cd6443a1bc773b1dc835767e (diff) | |
download | gdb-7c2c4aa12f4931fb79f94d787ef60e88960bb2a7.zip gdb-7c2c4aa12f4931fb79f94d787ef60e88960bb2a7.tar.gz gdb-7c2c4aa12f4931fb79f94d787ef60e88960bb2a7.tar.bz2 |
xtensa: prototype xtensa_make_property_section in elf/xtensa.h
There's no reason to have multiple prototypes for the same function.
include/ChangeLog:
2016-06-25 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* elf/xtensa.h (xtensa_make_property_section): New prototype.
gas/ChangeLog:
2016-06-25 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* config/tc-xtensa.c (xtensa_make_property_section): Remove prototype.
bfd/ChangeLog:
2016-06-25 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* elf32-xtensa.c (xtensa_make_property_section): Remove prototype.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-xtensa.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1c3e80a..d7246f8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2016-06-25 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + + * config/tc-xtensa.c (xtensa_make_property_section): Remove prototype. + 2016-06-24 Maciej W. Rozycki <macro@imgtec.com> * config/tc-mips.c (append_insn): Use any `O_symbol' expression diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index d2a3567..5840135 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -526,10 +526,6 @@ static void xtensa_switch_section_emit_state (emit_state *, segT, subsegT); static void xtensa_restore_emit_state (emit_state *); static segT cache_literal_section (bfd_boolean); -/* Import from elf32-xtensa.c in BFD library. */ - -extern asection *xtensa_make_property_section (asection *, const char *); - /* op_placement_info functions. */ static void init_op_placement_info_table (void); |