From c7499740c9a657402ba8f146feb5725652ace5d0 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sat, 7 Oct 2023 23:10:33 +0200 Subject: [PATCH] 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;