mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
Undo previous delta. Add comment explaining why.
This commit is contained in:
parent
c8614e8e65
commit
7e326afc19
@ -1,3 +1,8 @@
|
|||||||
|
2002-08-23 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Undo
|
||||||
|
previous change. Add comment explaining why.
|
||||||
|
|
||||||
2002-08-23 Stephen Clarke <stephen.clarke@superh.com>
|
2002-08-23 Stephen Clarke <stephen.clarke@superh.com>
|
||||||
|
|
||||||
* elf32-sh.c (elf_sh_plt0_entry_be, elf_sh_plt0_entry_le): Copy
|
* elf32-sh.c (elf_sh_plt0_entry_be, elf_sh_plt0_entry_le): Copy
|
||||||
|
@ -506,7 +506,12 @@ _bfd_elf_discard_section_eh_frame (abfd, info, sec, ehdrsec,
|
|||||||
}
|
}
|
||||||
read_uleb128 (cie.code_align, buf);
|
read_uleb128 (cie.code_align, buf);
|
||||||
read_sleb128 (cie.data_align, buf);
|
read_sleb128 (cie.data_align, buf);
|
||||||
cie.ra_column = *buf++;
|
/* Note - in DWARF2 the return address column is an unsigned byte.
|
||||||
|
In DWARF3 it is a ULEB128. We are following DWARF3. For most
|
||||||
|
ports this will not matter as the value will be less than 128.
|
||||||
|
For the others (eg FRV, SH, MMIX, IA64) they need a fixed GCC
|
||||||
|
which conforms to the DWARF3 standard. */
|
||||||
|
read_uleb128 (cie.ra_column, buf);
|
||||||
ENSURE_NO_RELOCS (buf);
|
ENSURE_NO_RELOCS (buf);
|
||||||
cie.lsda_encoding = DW_EH_PE_omit;
|
cie.lsda_encoding = DW_EH_PE_omit;
|
||||||
cie.fde_encoding = DW_EH_PE_omit;
|
cie.fde_encoding = DW_EH_PE_omit;
|
||||||
|
Loading…
Reference in New Issue
Block a user