Fix error reading ECOFF information: 'ioptMax' refers to the actual *size*
of the optimization symtab, not the number of entries.
This commit is contained in:
parent
1c59ba3fd5
commit
0e327d91fa
2 changed files with 6 additions and 1 deletions
|
@ -4,6 +4,9 @@
|
|||
correctly sign-extend 32-bit ECOFF null values (0xffffffff, -1)
|
||||
on 64 bit machines.
|
||||
(ecoff_swap_sym_in) <iss>: Likewise.
|
||||
* ecoff.c (_bfd_ecoff_slurp_symbolic_info): Fix error reading
|
||||
ECOFF information: 'ioptMax' refers to the actual *size*
|
||||
of the optimization symtab, not the number of entries.
|
||||
|
||||
2002-09-19 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
|
|
|
@ -553,7 +553,9 @@ _bfd_ecoff_slurp_symbolic_info (abfd, ignore, debug)
|
|||
UPDATE_RAW_END (cbDnOffset, idnMax, backend->debug_swap.external_dnr_size);
|
||||
UPDATE_RAW_END (cbPdOffset, ipdMax, backend->debug_swap.external_pdr_size);
|
||||
UPDATE_RAW_END (cbSymOffset, isymMax, backend->debug_swap.external_sym_size);
|
||||
UPDATE_RAW_END (cbOptOffset, ioptMax, backend->debug_swap.external_opt_size);
|
||||
/* eraxxon@alumni.rice.edu: ioptMax refers to the size of the
|
||||
optimization symtab, not the number of entries */
|
||||
UPDATE_RAW_END (cbOptOffset, ioptMax, sizeof (char));
|
||||
UPDATE_RAW_END (cbAuxOffset, iauxMax, sizeof (union aux_ext));
|
||||
UPDATE_RAW_END (cbSsOffset, issMax, sizeof (char));
|
||||
UPDATE_RAW_END (cbSsExtOffset, issExtMax, sizeof (char));
|
||||
|
|
Loading…
Add table
Reference in a new issue