We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495c304 commit fcbc99dCopy full SHA for fcbc99d
tests/lib-num/test.ml
@@ -91,7 +91,7 @@ let eq_nativeint (i: nativeint) (j: nativeint) = (i = j);;
91
let eq_int32 (i: int32) (j: int32) = (i = j);;
92
let eq_int64 (i: int64) (j: int64) = (i = j);;
93
94
-let sixtyfour = (1 lsl 31) <> 0;;
+let sixtyfour = Sys.word_size = 64;;
95
96
let rec gcd_int i1 i2 =
97
if i2 = 0 then abs i1 else gcd_int i2 (i1 mod i2);;
0 commit comments