1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-18 07:41:44 +02:00

(unw_is_fpreg): New macro.

(Logical change 1.11)
This commit is contained in:
mostang.com!davidm 2002-04-04 19:04:09 +00:00
parent 56ca4f04ae
commit 4208867819

View file

@ -207,6 +207,10 @@ extern int UNW_OBJ(is_signal_frame) (unw_cursor_t *c);
#define unw_get_save_loc(c,r,l) UNW_OBJ(get_save_loc)(c,r,l)
/* Return 1 if register number R is a floating-point register, zero
otherwise. */
#define unw_is_fpreg(r) unw_tdep_is_fpreg(r)
/* Returns non-zero value if the cursor points to a signal frame. */
#define unw_is_signal_frame(c) UNW_OBJ(is_signal_frame)(c)