From 061fe72f9e61d6c34f5370b8ccb733f441623a3d Mon Sep 17 00:00:00 2001 From: joonicks Date: Wed, 22 Oct 2025 22:35:26 +0200 Subject: [PATCH] dont try regparm on modern cpu --- src/h.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/h.h b/src/h.h index 9b2eaff..5f702f6 100644 --- a/src/h.h +++ b/src/h.h @@ -68,7 +68,7 @@ #endif /* __x86_64__ automatically compiles for regparm optimization */ -#if !defined(__profiling__) && defined(__i386__) +#if !defined(__profiling__) && defined(__i386__) && !defined(__i686__) # define __regparm(x) regparm(x) #else # define __regparm(x)