wingo pushed a commit to branch wip-whippet in repository guile. commit c7499740c9a657402ba8f146feb5725652ace5d0 Author: Andy Wingo <wi...@igalia.com> AuthorDate: Sat Oct 7 23:10:33 2023 +0200
Fix GCC detection Doh --- src/gc-stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gc-stack.c b/src/gc-stack.c index 54c6fdb0c..318f5757f 100644 --- a/src/gc-stack.c +++ b/src/gc-stack.c @@ -15,7 +15,7 @@ #include "gc-stack.h" static uintptr_t current_thread_hot_stack_addr(void) { -#ifdef __GCC__ +#ifdef __GNUC__ return (uintptr_t)__builtin_frame_address(0); #else uintptr_t local;