aboutsummaryrefslogtreecommitdiff
path: root/src/lib_debug.c
diff options
context:
space:
mode:
authorMike Pall <mike>2026-03-27 19:54:29 +0100
committerMike Pall <mike>2026-03-27 19:54:29 +0100
commit6594f87327f80c28461e9f2b04a694dfb6191299 (patch)
tree4dc7ed112bafe7f345510e8172d85968f22f0969 /src/lib_debug.c
parent0ef314dcb2186311cce37c029a1b4ec2265cf217 (diff)
downloadluajit-6594f87327f80c28461e9f2b04a694dfb6191299.tar.gz
luajit-6594f87327f80c28461e9f2b04a694dfb6191299.tar.bz2
luajit-6594f87327f80c28461e9f2b04a694dfb6191299.zip
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
Diffstat (limited to 'src/lib_debug.c')
-rw-r--r--src/lib_debug.c2
1 files changed, 1 insertions, 1 deletions
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)
283 283
284/* ------------------------------------------------------------------------ */ 284/* ------------------------------------------------------------------------ */
285 285
286#define KEY_HOOK (U64x(80000000,00000000)|'h') 286#define KEY_HOOK (U64x(81000000,00000000)|'h')
287 287
288static void hookf(lua_State *L, lua_Debug *ar) 288static void hookf(lua_State *L, lua_Debug *ar)
289{ 289{