2000-05-11 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* coffread.c (coff_symtab_read): In the case of C_THUMBEXT | C_THUMBEXTFUNC | C_EXT, sec will never ever be the index for .rodata, because cs_to_section doesn't deal with .rodata. Fix test accordingly.
This commit is contained in:
parent
381323f4f8
commit
2ec466f950
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2000-05-11 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
|
||||
|
||||
* coffread.c (coff_symtab_read): In the case of C_THUMBEXT |
|
||||
C_THUMBEXTFUNC | C_EXT, sec will never ever be the index for
|
||||
.rodata, because cs_to_section doesn't deal with .rodata. Fix test
|
||||
accordingly.
|
||||
|
||||
Thu May 11 21:33:59 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* gdbarch.sh (gdbarch_dump): Print the value of GDB_MULTI_ARCH.
|
||||
|
|
|
@ -969,7 +969,7 @@ coff_symtab_read (symtab_offset, nsyms, objfile)
|
|||
|| cs->c_sclass == C_THUMBEXT)
|
||||
tmpaddr += ANOFFSET (objfile->section_offsets, sec);
|
||||
|
||||
if (sec == SECT_OFF_TEXT (objfile) || sec == SECT_OFF_RODATA (objfile))
|
||||
if (sec == SECT_OFF_TEXT (objfile))
|
||||
{
|
||||
ms_type =
|
||||
cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXTFUNC
|
||||
|
|
Loading…
Reference in a new issue