mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
* dwarf.c (display_debug_frames): Check for DW64_CIE_ID when
parsing 64-bit frames.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2013-09-10 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* dwarf.c (display_debug_frames): Check for DW64_CIE_ID when
|
||||||
|
parsing 64-bit frames.
|
||||||
|
|
||||||
2013-08-27 Nick Clifton <nickc@redhat.com>
|
2013-08-27 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
PR binutils/15796
|
PR binutils/15796
|
||||||
|
@ -5188,7 +5188,8 @@ display_debug_frames (struct dwarf_section *section,
|
|||||||
|
|
||||||
SAFE_BYTE_GET_AND_INC (cie_id, start, offset_size, end);
|
SAFE_BYTE_GET_AND_INC (cie_id, start, offset_size, end);
|
||||||
|
|
||||||
if (is_eh ? (cie_id == 0) : (cie_id == DW_CIE_ID))
|
if (is_eh ? (cie_id == 0) : ((offset_size == 4 && cie_id == DW_CIE_ID)
|
||||||
|
|| (offset_size == 8 && cie_id == DW64_CIE_ID)))
|
||||||
{
|
{
|
||||||
int version;
|
int version;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user