diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2020-06-25 17:56:12 +0200 |
---|---|---|
committer | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2020-06-25 17:56:12 +0200 |
commit | bb6e55f3ee440c5d03fd47ec32255c20b9f895fe (patch) | |
tree | e0aef8743d1f7912df194ef9e4806aeceb42778a /gdb/gdbarch.h | |
parent | c6d3683661a7623a306667915abba4d4695616d7 (diff) | |
download | gdb-bb6e55f3ee440c5d03fd47ec32255c20b9f895fe.zip gdb-bb6e55f3ee440c5d03fd47ec32255c20b9f895fe.tar.gz gdb-bb6e55f3ee440c5d03fd47ec32255c20b9f895fe.tar.bz2 |
Remove obsolete gdbarch_static_transform_name
gdbarch_static_transform_name is completely Solaris-specific or rather
specific to the Studio compilers. Studio cc has deprecated Stabs support
in the 12.4 release back in 2015, GCC has defaulted to DWARF-2 on Solaris
7+ since 2004 and Stabs themselves are pretty much obsolete, so the whole
code can go.
Tested on sparcv9-sun-solaris2.11 and x86_64-pc-linux-gnu with
--enable-targets=all.
* sol2-tdep.c (sol2_static_transform_name): Remove.
(sol2_init_abi): Don't register it.
* gdbarch.sh (static_transform_name): Remove.
* gdbarch.c, gdbarch.h: Regenerate.
* dbxread.c (read_dbx_symtab) <'S'>: Remove call to
gdbarch_static_transform_name.
* mdebugread.c (parse_partial_symbols) <'S'>: Likewise.
* stabsread.c (define_symbol) <'X'>: Remove.
(define_symbol) <'S'>: Remove gdbarch_static_transform_name
handling.
<'V'>: Likewise.
* xcoffread.c (scan_xcoff_symtab): Remove gdbarch.
<'S'>: Remove call to gdbarch_static_transform_name.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index c7621f2..d7e7c49 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -1112,14 +1112,6 @@ typedef const struct target_desc * (gdbarch_core_read_description_ftype) (struct extern const struct target_desc * gdbarch_core_read_description (struct gdbarch *gdbarch, struct target_ops *target, bfd *abfd); extern void set_gdbarch_core_read_description (struct gdbarch *gdbarch, gdbarch_core_read_description_ftype *core_read_description); -/* Handle special encoding of static variables in stabs debug info. */ - -extern int gdbarch_static_transform_name_p (struct gdbarch *gdbarch); - -typedef const char * (gdbarch_static_transform_name_ftype) (const char *name); -extern const char * gdbarch_static_transform_name (struct gdbarch *gdbarch, const char *name); -extern void set_gdbarch_static_transform_name (struct gdbarch *gdbarch, gdbarch_static_transform_name_ftype *static_transform_name); - /* Set if the address in N_SO or N_FUN stabs may be zero. */ extern int gdbarch_sofun_address_maybe_missing (struct gdbarch *gdbarch); |