diff options
| author | Mike Pall <mike> | 2026-03-27 19:54:29 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2026-03-27 19:54:29 +0100 |
| commit | 6594f87327f80c28461e9f2b04a694dfb6191299 (patch) | |
| tree | 4dc7ed112bafe7f345510e8172d85968f22f0969 /src/lib_debug.c | |
| parent | 0ef314dcb2186311cce37c029a1b4ec2265cf217 (diff) | |
| download | luajit-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.c | 2 |
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 | ||
| 288 | static void hookf(lua_State *L, lua_Debug *ar) | 288 | static void hookf(lua_State *L, lua_Debug *ar) |
| 289 | { | 289 | { |
