diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-08-07 15:02:48 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-08-07 15:02:48 +0000 |
commit | a4c8257b03066fd493a6aea443ca7b1717c1df22 (patch) | |
tree | 7b90a808bc1bee67ca150870f1b8695df6991b3c /gdb/symfile.c | |
parent | 279ddab43fb1e29a4ffb63e9e7a34f89b2ac2a31 (diff) | |
download | gdb-a4c8257b03066fd493a6aea443ca7b1717c1df22.zip gdb-a4c8257b03066fd493a6aea443ca7b1717c1df22.tar.gz gdb-a4c8257b03066fd493a6aea443ca7b1717c1df22.tar.bz2 |
2000-08-07 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* objfiles.h (SECT_OFF_BSS): Don't detect invalid sect_index_bss
here, let the users of the macro do it.
* symtab.h (ANOFFSET): Detect here if the section index is not
initialized.
* xcoffread.c (find_targ_sec): Don't treat .bss as special,
because some objfiles may not have that section at all.
* coffread.c (cs_to_section): Ditto.
* elfread.c (elf_symtab_read): Detect an uninitialized index
value.
(elfstab_offset_sections): The macro ANOFFSET cannot be used as an
lvalue anymore.
* remote.c (get_offsets, remote_cisco_objfile_relocate): Don't use
ANOFFSET as an lvalue.
* objfiles.c (objfile_relocate, objfile_relocate): Don't use
ANOFFSET as an lvalue.
* symfile.c (default_symfile_offsets): Don't use ANOFFSET as an
lvalue.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index e28158a..a353c5f 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -521,7 +521,7 @@ default_symfile_offsets (struct objfile *objfile, /* Record all sections in offsets */ /* The section_offsets in the objfile are here filled in using the BFD index. */ - ANOFFSET (objfile->section_offsets, osp->sectindex) = osp->addr; + (objfile->section_offsets)->offsets[osp->sectindex] = osp->addr; } /* Remember the bfd indexes for the .text, .data, .bss and |