From 9034bd158ab44ecf5c3c42471e25baed5b74a2d5 Mon Sep 17 00:00:00 2001 From: "homeip.net!davidm" Date: Fri, 20 Aug 2004 11:23:15 +0000 Subject: [PATCH] (struct dwarf_cursor): Add new member "cfa_is_sp" to mark the case when the (unsaved) stack-pointer is the CFA. (Logical change 1.253) --- include/dwarf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dwarf.h b/include/dwarf.h index 76dc8a83..8b5eb384 100644 --- a/include/dwarf.h +++ b/include/dwarf.h @@ -261,6 +261,7 @@ typedef struct dwarf_cursor unsigned int pi_valid :1; /* is proc_info valid? */ unsigned int pi_is_dynamic :1; /* proc_info found via dynamic proc info? */ + unsigned int cfa_is_sp :1; /* TRUE if stack-pointer is CFA */ unw_proc_info_t pi; /* info about current procedure */ } dwarf_cursor_t;