1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-09-29 01:49:28 +02:00

(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)
This commit is contained in:
homeip.net!davidm 2004-08-20 11:23:15 +00:00
parent 9ac7a860d1
commit 9034bd158a

View file

@ -261,6 +261,7 @@ typedef struct dwarf_cursor
unsigned int pi_valid :1; /* is proc_info valid? */ unsigned int pi_valid :1; /* is proc_info valid? */
unsigned int pi_is_dynamic :1; /* proc_info found via dynamic proc info? */ 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 */ unw_proc_info_t pi; /* info about current procedure */
} }
dwarf_cursor_t; dwarf_cursor_t;