diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-10-05 23:13:56 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-10-05 23:13:56 +0000 |
commit | 2acceee2182a942e6a79a972009540990f4dfabf (patch) | |
tree | 2ed7ca473f0b49181f1d0214c3450a7eb17f7bcb /gdb/somread.c | |
parent | 3e9c42873ee1d0bbb03039baea78c617174f9269 (diff) | |
download | gdb-2acceee2182a942e6a79a972009540990f4dfabf.zip gdb-2acceee2182a942e6a79a972009540990f4dfabf.tar.gz gdb-2acceee2182a942e6a79a972009540990f4dfabf.tar.bz2 |
import gdb-1999-10-04 snapshot
Diffstat (limited to 'gdb/somread.c')
-rw-r--r-- | gdb/somread.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/somread.c b/gdb/somread.c index cb1c850..489a330 100644 --- a/gdb/somread.c +++ b/gdb/somread.c @@ -53,7 +53,7 @@ som_symtab_read PARAMS ((bfd *, struct objfile *, struct section_offsets *)); static void -som_symfile_offsets PARAMS ((struct objfile *, CORE_ADDR)); +som_symfile_offsets PARAMS ((struct objfile *, struct section_addr_info *)); /* FIXME: These should really be in a common header somewhere */ @@ -460,9 +460,9 @@ som_symfile_init (objfile) Plain and simple for now. */ static void -som_symfile_offsets (objfile, addr) +som_symfile_offsets (objfile, addrs) struct objfile *objfile; - CORE_ADDR addr; + struct section_addr_info *addrs; { int i; @@ -471,11 +471,11 @@ som_symfile_offsets (objfile, addr) obstack_alloc (&objfile->psymbol_obstack, SIZEOF_SECTION_OFFSETS); /* First see if we're a shared library. If so, get the section - offsets from the library, else get them from addr. */ + offsets from the library, else get them from addrs. */ if (!som_solib_section_offsets (objfile, objfile->section_offsets)) { for (i = 0; i < SECT_OFF_MAX; i++) - ANOFFSET (objfile->section_offsets, i) = addr; + ANOFFSET (objfile->section_offsets, i) = addrs -> text_addr; } } |