From a4c8257b03066fd493a6aea443ca7b1717c1df22 Mon Sep 17 00:00:00 2001 From: Elena Zannoni Date: Mon, 7 Aug 2000 15:02:48 +0000 Subject: 2000-08-07 Elena Zannoni * 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. --- gdb/symfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/symfile.c') 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 -- cgit v1.1