From 6594f87327f80c28461e9f2b04a694dfb6191299 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Fri, 27 Mar 2026 19:54:29 +0100 Subject: Avoid use of subnormals for internal registry keys. Non-ABI-compliant FPU modes (-ffast-math, -Ofast, FTZ/DAZ set) may still cause erratic behavior and are not supported. #1448 --- src/lib_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib_debug.c') diff --git a/src/lib_debug.c b/src/lib_debug.c index a5bcb167..705623ac 100644 --- a/src/lib_debug.c +++ b/src/lib_debug.c @@ -283,7 +283,7 @@ LJLIB_CF(debug_setuservalue) /* ------------------------------------------------------------------------ */ -#define KEY_HOOK (U64x(80000000,00000000)|'h') +#define KEY_HOOK (U64x(81000000,00000000)|'h') static void hookf(lua_State *L, lua_Debug *ar) { -- cgit v1.2.3-55-g6feb