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 | 50ea21b7b34effab5d2a63ab61279dce243fa74d (patch) | |
tree | 9f23224160cb85446b4d6e7b979d7576f6d62145 /gdb/pa64solib.c | |
parent | 50c6ba7775a6cafe02f9a0e2339667285419562f (diff) | |
download | gdb-50ea21b7b34effab5d2a63ab61279dce243fa74d.tar.gz |
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 459302ae219..480802df9e4 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. */ |