From 155fc52ea2da7c5517a8a39854dbac932bafec57 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 10 Sep 2013 16:19:07 +0000 Subject: * dwarf.c (display_debug_frames): Check for DW64_CIE_ID when parsing 64-bit frames. --- binutils/dwarf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'binutils/dwarf.c') diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 05bc483abf..00dad397f4 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -5188,7 +5188,8 @@ display_debug_frames (struct dwarf_section *section, 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; -- cgit v1.2.1