diff options
author | Mike Pall <mike> | 2020-05-22 03:10:50 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2020-05-22 03:13:57 +0200 |
commit | d75e26275bdcfe95283b761ef9405841ef2d406f (patch) | |
tree | daf6ba5a7f2b66e61e464f18ad6298c68a352db5 /src/lib_math.c | |
parent | 03208c8162af9cc01ca76ee1676ca79e5abe9b60 (diff) | |
download | luajit-d75e26275bdcfe95283b761ef9405841ef2d406f.tar.gz luajit-d75e26275bdcfe95283b761ef9405841ef2d406f.tar.bz2 luajit-d75e26275bdcfe95283b761ef9405841ef2d406f.zip |
Don't compile math.modf() anymore.
It's rarely used and properly compiling it would be difficult.
Diffstat (limited to 'src/lib_math.c')
-rw-r--r-- | src/lib_math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib_math.c b/src/lib_math.c index 3fd466ca..02aa21d7 100644 --- a/src/lib_math.c +++ b/src/lib_math.c | |||
@@ -45,7 +45,7 @@ LJLIB_ASM_(math_sinh) LJLIB_REC(math_htrig IRCALL_sinh) | |||
45 | LJLIB_ASM_(math_cosh) LJLIB_REC(math_htrig IRCALL_cosh) | 45 | LJLIB_ASM_(math_cosh) LJLIB_REC(math_htrig IRCALL_cosh) |
46 | LJLIB_ASM_(math_tanh) LJLIB_REC(math_htrig IRCALL_tanh) | 46 | LJLIB_ASM_(math_tanh) LJLIB_REC(math_htrig IRCALL_tanh) |
47 | LJLIB_ASM_(math_frexp) | 47 | LJLIB_ASM_(math_frexp) |
48 | LJLIB_ASM_(math_modf) LJLIB_REC(.) | 48 | LJLIB_ASM_(math_modf) |
49 | 49 | ||
50 | LJLIB_ASM(math_log) LJLIB_REC(math_log) | 50 | LJLIB_ASM(math_log) LJLIB_REC(math_log) |
51 | { | 51 | { |