diff options
Diffstat (limited to 'src/lib_math.c')
-rw-r--r-- | src/lib_math.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib_math.c b/src/lib_math.c index fb038b1d..24501139 100644 --- a/src/lib_math.c +++ b/src/lib_math.c | |||
@@ -53,7 +53,7 @@ LJLIB_ASM_(math_deg) LJLIB_REC(math_degrad) | |||
53 | LJLIB_PUSH(0.017453292519943295) | 53 | LJLIB_PUSH(0.017453292519943295) |
54 | LJLIB_ASM_(math_rad) LJLIB_REC(math_degrad) | 54 | LJLIB_ASM_(math_rad) LJLIB_REC(math_degrad) |
55 | 55 | ||
56 | LJLIB_ASM(math_atan2) LJLIB_REC(math_binary IR_ATAN2) | 56 | LJLIB_ASM(math_atan2) LJLIB_REC(.) |
57 | { | 57 | { |
58 | lj_lib_checknum(L, 1); | 58 | lj_lib_checknum(L, 1); |
59 | lj_lib_checknum(L, 2); | 59 | lj_lib_checknum(L, 2); |
@@ -62,7 +62,7 @@ LJLIB_ASM(math_atan2) LJLIB_REC(math_binary IR_ATAN2) | |||
62 | LJLIB_ASM_(math_pow) LJLIB_REC(.) | 62 | LJLIB_ASM_(math_pow) LJLIB_REC(.) |
63 | LJLIB_ASM_(math_fmod) | 63 | LJLIB_ASM_(math_fmod) |
64 | 64 | ||
65 | LJLIB_ASM(math_ldexp) LJLIB_REC(math_binary IR_LDEXP) | 65 | LJLIB_ASM(math_ldexp) LJLIB_REC(.) |
66 | { | 66 | { |
67 | lj_lib_checknum(L, 1); | 67 | lj_lib_checknum(L, 1); |
68 | #if LJ_DUALNUM && !LJ_TARGET_X86ORX64 | 68 | #if LJ_DUALNUM && !LJ_TARGET_X86ORX64 |