diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-02-28 02:07:54 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-02-28 02:07:54 +0000 |
commit | 35a3e78edb9d4a3ef98f975587752325c9be860f (patch) | |
tree | ef86e36c35a9eee883d91f4066c08bd26a096cc7 /bfd/libbfd.h | |
parent | 85d6f0b476fd84375e4c50d02b02bf34321d0546 (diff) | |
download | gdb-35a3e78edb9d4a3ef98f975587752325c9be860f.zip gdb-35a3e78edb9d4a3ef98f975587752325c9be860f.tar.gz gdb-35a3e78edb9d4a3ef98f975587752325c9be860f.tar.bz2 |
* targets.c (BFD_JUMP_TABLE_SYMBOLS): Change _bfd_is_local_label
to _bfd_is_local_label_name.
(bfd_target): Likewise.
* syms.c (bfd_is_local_label): Define as function, not macro.
(bfd_is_local_name): Define.
* libbfd.c (bfd_generic_is_local_label_name): Rename from
bfd_generic_is_local_label, and take a string rather than a
symbol.
* libbfd-in.h (_bfd_nosymbols_bfd_is_local_label): Don't define.
(_bfd_nosymbols_bfd_is_local_label_name): Define.
(bfd_generic_is_local_label): Don't declare.
(bfd_generic_is_local_label_name): Declare.
* bfd-in2.h, libbfd.h: Rebuild.
* All backends: Change local_label to local_label_name.
Diffstat (limited to 'bfd/libbfd.h')
-rw-r--r-- | bfd/libbfd.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bfd/libbfd.h b/bfd/libbfd.h index 66cc841..a0864ea 100644 --- a/bfd/libbfd.h +++ b/bfd/libbfd.h @@ -259,8 +259,8 @@ extern boolean _bfd_archive_coff_construct_extended_name_table ((void (*) PARAMS ((bfd *, PTR, asymbol *, bfd_print_symbol_type))) bfd_void) #define _bfd_nosymbols_get_symbol_info \ ((void (*) PARAMS ((bfd *, asymbol *, symbol_info *))) bfd_void) -#define _bfd_nosymbols_bfd_is_local_label \ - ((boolean (*) PARAMS ((bfd *, asymbol *))) bfd_false) +#define _bfd_nosymbols_bfd_is_local_label_name \ + ((boolean (*) PARAMS ((bfd *, const char *))) bfd_false) #define _bfd_nosymbols_get_lineno \ ((alent *(*) PARAMS ((bfd *, asymbol *))) bfd_nullvoidptr) #define _bfd_nosymbols_find_nearest_line \ @@ -339,7 +339,7 @@ extern boolean _bfd_generic_set_section_contents /* Generic routine to determine of the given symbol is a local label. */ -extern boolean bfd_generic_is_local_label PARAMS ((bfd *, asymbol *)); +extern boolean bfd_generic_is_local_label_name PARAMS ((bfd *, const char *)); /* Generic minisymbol routines. */ extern long _bfd_generic_read_minisymbols @@ -766,6 +766,7 @@ static const char *const bfd_reloc_code_real_names[] = { "@@uninitialized@@", "BFD_RELOC_M32R_HI16_ULO", "BFD_RELOC_M32R_HI16_SLO", "BFD_RELOC_M32R_LO16", + "BFD_RELOC_M32R_SDA16", /* end-sanitize-m32r */ /* start-sanitize-v850 */ |