1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-18 18:40:22 +02:00

Fix GCC detection

Doh
This commit is contained in:
Andy Wingo 2023-10-07 23:10:33 +02:00
parent 3c63de9b9d
commit c7499740c9

View file

@ -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;