summaryrefslogtreecommitdiffstats
path: root/libdw/dwarf.h
diff options
context:
space:
mode:
authorRoland McGrath <[email protected]>2009-04-15 14:47:13 -0700
committerRoland McGrath <[email protected]>2009-04-15 14:47:13 -0700
commit2fb9051edd6addafe902669ba0bd47f3921a31d1 (patch)
treef88955064bb92c5d6aa549f523278d5117924e60 /libdw/dwarf.h
parenteb9ba470ff1f65a85f47cd6c325acf836abd2af8 (diff)
Fix 32/64 CIE header format CIE_id matching.
Diffstat (limited to 'libdw/dwarf.h')
-rw-r--r--libdw/dwarf.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libdw/dwarf.h b/libdw/dwarf.h
index 3b9d40c9..0546e3eb 100644
--- a/libdw/dwarf.h
+++ b/libdw/dwarf.h
@@ -677,7 +677,8 @@ enum
/* ID indicating CIE as opposed to FDE in .debug_frame. */
enum
{
- DW_CIE_ID = 0xffffffff
+ DW_CIE_ID_32 = 0xffffffffU, /* In 32-bit format CIE header. */
+ DW_CIE_ID_64 = 0xffffffffffffffffULL /* In 64-bit format CIE header. */
};