From 4208867819cbea7ce81e92d4556fbcfd51ecb4fc Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Thu, 4 Apr 2002 19:04:09 +0000 Subject: [PATCH] (unw_is_fpreg): New macro. (Logical change 1.11) --- include/libunwind.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/libunwind.h b/include/libunwind.h index c5aaf0ea..2cb113c6 100644 --- a/include/libunwind.h +++ b/include/libunwind.h @@ -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)