diff options
author | Paul Brook <paul@codesourcery.com> | 2007-04-17 20:09:52 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2007-04-17 20:09:52 +0000 |
commit | fcb93ecfc25d0337944090414ed53da4dcdd6864 (patch) | |
tree | b5c44efa1f04197add1b10c2520b78cfb190553f /bfd/elf-bfd.h | |
parent | 06f9a1af70ed2722e575203073271ae39c071def (diff) | |
download | gdb-fcb93ecfc25d0337944090414ed53da4dcdd6864.zip gdb-fcb93ecfc25d0337944090414ed53da4dcdd6864.tar.gz gdb-fcb93ecfc25d0337944090414ed53da4dcdd6864.tar.bz2 |
2007-04-17 Paul Brook <paul@codesourcery.com>
bfd/
* elf.c (_bfd_elf_is_function_type): New function.
* elflink.c (_bfd_elf_merge_symbol): Use bed->is_function_type.
(_bfd_elf_dynamic_symbol_p, _bfd_elf_symbol_refs_local_p,
is_global_data_symbol_definition, elf_link_add_object_symbols): Ditto.
* elf-bfd.h (elf_backend_data): Add is_function_type.
(_bfd_elf_is_function_type): Add prototype.
* elfxx-target.h (elf_backend_is_function_type): Add default
definition.
(elfNN_bed): Add elf_backend_is_function_type.
* elf32-arm.c (elf32_arm_is_function_type): New function.
(elf_backend_is_function_type): Define.
ld/testsuite/
* ld-arm/preempt-app.s: New test.
* ld-arm/preempt-app.sym: New.
* ld-arm/arm-elf.exp: Add preempt-app.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 4a01fe6..e9ee29b 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -1050,6 +1050,9 @@ struct elf_backend_data /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */ bfd_boolean (*elf_hash_symbol) (struct elf_link_hash_entry *); + /* Return TRUE if type is a function symbol type. */ + bfd_boolean (*is_function_type) (unsigned int type); + /* Used to handle bad SHF_LINK_ORDER input. */ bfd_error_handler_type link_order_error_handler; @@ -1919,6 +1922,8 @@ extern struct elf_segment_map * _bfd_elf_make_dynamic_segment extern bfd_boolean _bfd_elf_map_sections_to_segments (bfd *, struct bfd_link_info *); +extern bfd_boolean _bfd_elf_is_function_type (unsigned int); + /* Exported interface for writing elf corefile notes. */ extern char *elfcore_write_note (bfd *, char *, int *, const char *, int, const void *, int); |