diff options
author | Jeff Law <law@redhat.com> | 1993-12-06 07:19:13 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1993-12-06 07:19:13 +0000 |
commit | 42ecb40985feacfd0eaa23d6a049d1e9e188093e (patch) | |
tree | 9663e8ccd17e09aa51b3a5cce325d8a82fdb446e /gas/config/obj-som.h | |
parent | 9934dce825ce0fd6cc7bd530fed80f266433eef1 (diff) | |
download | gdb-42ecb40985feacfd0eaa23d6a049d1e9e188093e.zip gdb-42ecb40985feacfd0eaa23d6a049d1e9e188093e.tar.gz gdb-42ecb40985feacfd0eaa23d6a049d1e9e188093e.tar.bz2 |
* config/obj-som.c (obj_read_begin_hook): Delete unused function.
* config/obj-som.h (obj_read_begin_hook): Provide dummy definition.
(TARGET_SYMBOL_FIELDS): Delete. SOM isn't making use of them.
Diffstat (limited to 'gas/config/obj-som.h')
-rw-r--r-- | gas/config/obj-som.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gas/config/obj-som.h b/gas/config/obj-som.h index 7834685..5d2bbf8 100644 --- a/gas/config/obj-som.h +++ b/gas/config/obj-som.h @@ -34,9 +34,6 @@ #define TRUE !FALSE #endif -#define TARGET_SYMBOL_FIELDS int local:1; unsigned long sy_name_offset; - - /* should be conditional on address size! */ #define som_symbol(asymbol) ((som_symbol_type *)(&(asymbol)->the_bfd)) @@ -54,6 +51,7 @@ extern void obj_som_version PARAMS ((int)); extern void obj_som_init_stab_section PARAMS ((segT)); #define obj_symbol_new_hook(s) {;} +#define obj_read_begin_hook() {;} /* SOM has several attributes for spaces/subspaces which can not be easily expressed in BFD. We use these macros to trigger calls @@ -64,6 +62,10 @@ extern void obj_som_init_stab_section PARAMS ((segT)); /* Likewise for symbol types. */ #define obj_set_symbol_type bfd_som_set_symbol_type +/* This is the trigger for calling a BFD routine to attach unwind + information to a function symbol. */ +#define obj_attach_unwind_info bfd_som_attach_unwind_info + /* Stabs go in a separate sections. GDB expects to find them in sections with the names $GDB_SYMBOLS$ and $GDB_STRINGS$ rather than .stab and .stabstr. */ |