aboutsummaryrefslogtreecommitdiff
path: root/lmathlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lmathlib.c')
-rw-r--r--lmathlib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lmathlib.c b/lmathlib.c
index e3ccc3ee..3454c41f 100644
--- a/lmathlib.c
+++ b/lmathlib.c
@@ -266,7 +266,7 @@ static int math_type (lua_State *L) {
266 266
267/* try to find an integer type with at least 64 bits */ 267/* try to find an integer type with at least 64 bits */
268 268
269#if (LONG_MAX >> 31 >> 31) >= 1 269#if (ULONG_MAX >> 31 >> 31) >= 3
270 270
271/* 'long' has at least 64 bits */ 271/* 'long' has at least 64 bits */
272#define Rand64 unsigned long 272#define Rand64 unsigned long
@@ -276,7 +276,7 @@ static int math_type (lua_State *L) {
276/* there is a 'long long' type (which must have at least 64 bits) */ 276/* there is a 'long long' type (which must have at least 64 bits) */
277#define Rand64 unsigned long long 277#define Rand64 unsigned long long
278 278
279#elif (LUA_MAXINTEGER >> 31 >> 31) >= 1 279#elif (LUA_MAXINTEGER >> 30 >> 30) >= 7
280 280
281/* 'lua_Integer' has at least 64 bits */ 281/* 'lua_Integer' has at least 64 bits */
282#define Rand64 lua_Unsigned 282#define Rand64 lua_Unsigned
@@ -347,7 +347,7 @@ static lua_Number I2d (Rand64 x) {
347#else /* no 'Rand64' }{ */ 347#else /* no 'Rand64' }{ */
348 348
349/* get an integer with at least 32 bits */ 349/* get an integer with at least 32 bits */
350#if (INT_MAX >> 30) >= 1 350#if LUAI_IS32INT
351typedef unsigned int lu_int32; 351typedef unsigned int lu_int32;
352#else 352#else
353typedef unsigned long lu_int32; 353typedef unsigned long lu_int32;
@@ -538,7 +538,7 @@ static lua_Unsigned project (lua_Unsigned ran, lua_Unsigned n,
538 lim |= (lim >> 4); 538 lim |= (lim >> 4);
539 lim |= (lim >> 8); 539 lim |= (lim >> 8);
540 lim |= (lim >> 16); 540 lim |= (lim >> 16);
541#if (LUA_MAXINTEGER >> 30 >> 1) > 0 541#if (LUA_MAXINTEGER >> 30) >= 3
542 lim |= (lim >> 32); /* integer type has more than 32 bits */ 542 lim |= (lim >> 32); /* integer type has more than 32 bits */
543#endif 543#endif
544 } 544 }