diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-12 16:55:32 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-12 16:55:32 +0000 |
commit | 260edbc2caedd55298a64621088983551dfd208c (patch) | |
tree | a7be0a7b754f6be73edb8474d8b4837ec39da3cf /gdb/gdbarch.h | |
parent | c1afe53dd0ad0474a838e84cd0d98f8830c3d9ef (diff) | |
download | gdb-260edbc2caedd55298a64621088983551dfd208c.zip gdb-260edbc2caedd55298a64621088983551dfd208c.tar.gz gdb-260edbc2caedd55298a64621088983551dfd208c.tar.bz2 |
2007-06-12 Markus Deuling <deuling@de.ibm.com>
* gdbarch.sh (SMASH_TEXT_ADDRESS): Replace by
gdbarch_smash_text_address.
* somread.c (som_symtab_read): Likewise.
* elfread.c (record_minimal_symbol): Likewise.
* dbxread.c (process_one_symbol): Likewise.
* coffread.c (coff_symtab_read): Likewise.
* gdbarch.c, gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index c20696e..b0a6bde 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -756,18 +756,12 @@ typedef CORE_ADDR (gdbarch_addr_bits_remove_ftype) (CORE_ADDR addr); extern CORE_ADDR gdbarch_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr); extern void set_gdbarch_addr_bits_remove (struct gdbarch *gdbarch, gdbarch_addr_bits_remove_ftype *addr_bits_remove); -/* It is not at all clear why SMASH_TEXT_ADDRESS is not folded into +/* It is not at all clear why gdbarch_smash_text_address is not folded into gdbarch_addr_bits_remove. */ typedef CORE_ADDR (gdbarch_smash_text_address_ftype) (CORE_ADDR addr); extern CORE_ADDR gdbarch_smash_text_address (struct gdbarch *gdbarch, CORE_ADDR addr); extern void set_gdbarch_smash_text_address (struct gdbarch *gdbarch, gdbarch_smash_text_address_ftype *smash_text_address); -#if !defined (GDB_TM_FILE) && defined (SMASH_TEXT_ADDRESS) -#error "Non multi-arch definition of SMASH_TEXT_ADDRESS" -#endif -#if !defined (SMASH_TEXT_ADDRESS) -#define SMASH_TEXT_ADDRESS(addr) (gdbarch_smash_text_address (current_gdbarch, addr)) -#endif /* FIXME/cagney/2001-01-18: This should be split in two. A target method that indicates if the target needs software single step. An ISA method to |