diff options
author | Yao Qi <yao@codesourcery.com> | 2012-11-21 00:29:55 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-11-21 00:29:55 +0000 |
commit | 85ddcc7021c2709e1b2846277d9af37fe0c6ee80 (patch) | |
tree | e2f154c30144bd08eeb756ed557d1ecc162c81cd /gdb/dbxread.c | |
parent | 367d69d1bc48fc022cacc4d0c4a712b2f2079b1b (diff) | |
download | gdb-85ddcc7021c2709e1b2846277d9af37fe0c6ee80.zip gdb-85ddcc7021c2709e1b2846277d9af37fe0c6ee80.tar.gz gdb-85ddcc7021c2709e1b2846277d9af37fe0c6ee80.tar.bz2 |
gdb/
2012-11-21 Yao Qi <yao@codesourcery.com>
PR tdep/7438
* gdbarch.sh (smash_text_address): Remove.
* gdbarch.c, gdbarch.h: Regenerate.
* arm-tdep.c (arm_smash_text_address): Remove.
(arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
* hppa-tdep.c (hppa_smash_text_address): Remove.
(hppa_addr_bits_remove): Rename from hppa_smash_text_address.
(hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
Caller update.
* coffread.c (coff_symtab_read): Caller update.
* dbxread.c (process_one_symbol): Likewise.
* elfread.c (record_minimal_symbol): Likewise.
* somread.c (som_symtab_read): Likewise.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 2d47407..9d0e624 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -2827,7 +2827,7 @@ process_one_symbol (int type, int desc, CORE_ADDR valu, char *name, /* Relocate for dynamic loading. */ valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile)); - valu = gdbarch_smash_text_address (gdbarch, valu); + valu = gdbarch_addr_bits_remove (gdbarch, valu); last_function_start = valu; goto define_a_symbol; |