From 785024fb01263314b1c5c644006855fceb20cbb5 Mon Sep 17 00:00:00 2001 From: ezannoni Date: Mon, 7 Aug 2000 15:16:15 +0000 Subject: [PATCH] 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/xcoffread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 53e546958f..47d44a5261 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -274,7 +274,7 @@ find_targ_sec (bfd *abfd, asection *sect, PTR obj) else if (bfd_get_section_flags (abfd, sect) & SEC_LOAD) *args->resultp = SECT_OFF_DATA (objfile); else - *args->resultp = SECT_OFF_BSS (objfile); + *args->resultp = sect->index; *args->bfd_sect = sect; } } -- 2.11.0