diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-08-27 22:30:29 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-08-27 22:30:29 +0000 |
commit | f0a58b0b8c4dde0a186617d71b3280d8ce9379d0 (patch) | |
tree | 58bb74315c8a60f3bd667a4e66f624a586e91ecb /gdb/pa64solib.c | |
parent | bd415eabb699c911e5186fc9efc5a867e45ba7af (diff) | |
download | gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.zip gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.tar.gz gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.tar.bz2 |
2000-08-27 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* pa64solib.c (pa64_solib_load_symbols): Don't use ANOFFSET as an
lvalue.
* xcoffread.c (xcoff_symfile_offsets): Ditto
* somsolib.c (som_solib_section_offsets): Ditto.
* somread.c (som_symfile_offsets): Ditto.
* rs6000-nat.c (vmap_symtab): Ditto.
* remote-vx.c (vx_add_symbols): Ditto.
* remote-os9k.c (rombug_wait): Ditto.
Diffstat (limited to 'gdb/pa64solib.c')
-rw-r--r-- | gdb/pa64solib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/pa64solib.c b/gdb/pa64solib.c index 459302a..480802d 100644 --- a/gdb/pa64solib.c +++ b/gdb/pa64solib.c @@ -319,9 +319,9 @@ pa64_solib_load_symbols (struct so_list *so, char *name, int from_tty, return; } - ANOFFSET (so->objfile->section_offsets, SECT_OFF_TEXT (so->objfile)) + (so->objfile->section_offsets)->offsets[SECT_OFF_TEXT (so->objfile)] = so->pa64_solib_desc.text_base; - ANOFFSET (so->objfile->section_offsets, SECT_OFF_DATA (so->objfile)) + (so->objfile->section_offsets)->offsets[SECT_OFF_DATA (so->objfile)] = so->pa64_solib_desc.data_base; /* Relocate all the sections based on where they got loaded. */ |