Use uintptr_t for return type of _Unwind_GetCFA.

This matches the type in other unwind headers.

Reviewed by:	dim, emaste
Differential Revision:	https://reviews.freebsd.org/D34050
This commit is contained in:
John Baldwin 2022-01-27 10:53:21 -08:00
parent b84693501a
commit 3a502289d3

View File

@ -67,7 +67,7 @@ static _Unwind_Reason_Code thread_unwind_stop(int version,
/* unwind library pointers */
static _Unwind_Reason_Code (*uwl_forcedunwind)(struct _Unwind_Exception *,
_Unwind_Stop_Fn, void *);
static unsigned long (*uwl_getcfa)(struct _Unwind_Context *);
static uintptr_t (*uwl_getcfa)(struct _Unwind_Context *);
static void
thread_uw_init(void)
@ -109,7 +109,7 @@ _Unwind_ForcedUnwind(struct _Unwind_Exception *ex, _Unwind_Stop_Fn stop_func,
return (*uwl_forcedunwind)(ex, stop_func, stop_arg);
}
unsigned long
uintptr_t
_Unwind_GetCFA(struct _Unwind_Context *context)
{
return (*uwl_getcfa)(context);