aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lj_carith.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_carith.c b/src/lj_carith.c
index 418400cf..e3287de9 100644
--- a/src/lj_carith.c
+++ b/src/lj_carith.c
@@ -118,7 +118,7 @@ static int carith_ptr(lua_State *L, CTState *cts, CDArith *ca, MMS mm)
118 /* All valid pointer differences on x64 are in (-2^47, +2^47), 118 /* All valid pointer differences on x64 are in (-2^47, +2^47),
119 ** which fits into a double without loss of precision. 119 ** which fits into a double without loss of precision.
120 */ 120 */
121 setintptrV(L->top-1, (int32_t)diff); 121 setintptrV(L->top-1, diff);
122 return 1; 122 return 1;
123 } else if (mm == MM_lt) { /* Pointer comparison (unsigned). */ 123 } else if (mm == MM_lt) { /* Pointer comparison (unsigned). */
124 setboolV(L->top-1, ((uintptr_t)pp < (uintptr_t)pp2)); 124 setboolV(L->top-1, ((uintptr_t)pp < (uintptr_t)pp2));