Skip to content

Commit 36b97f8

Browse files
committed
avoid magic number..
1 parent 865bfde commit 36b97f8

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

jscomp/stdlib/camlinternalOO.ml

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ let params = {
4444
(**** Parameters ****)
4545
#if BS then(* {!Translobj.oo_prim : string -> lambda} not by slot *)
4646
module Sys = struct
47-
let word_size = 32
47+
external word_size : unit -> int = "%word_size"
48+
let word_size = word_size ()
4849
end
4950
#end
5051
let step = Sys.word_size / 16

jscomp/stdlib/gc.ml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
(***********************************************************************)
1313
#if BS then
1414
module Sys = struct
15-
let word_size = 8
15+
external word_size : unit -> int = "%word_size"
16+
let word_size = word_size ()
1617
end
1718
#end
1819
type stat = {

lib/js/camlinternalOO.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ function get_variable(table, name) {
709709
Caml_builtin_exceptions.assert_failure,
710710
[
711711
"camlinternalOO.ml",
712-
284,
712+
285,
713713
50
714714
]
715715
];

lib/js/gc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ function print_stat(c) {
236236

237237
function allocated_bytes() {
238238
var match = Caml_gc.caml_gc_counters(/* () */0);
239-
return (match[0] + match[2] - match[1]) * 1;
239+
return (match[0] + match[2] - match[1]) * 4;
240240
}
241241

242242
function call_alarm(arec) {

0 commit comments

Comments
 (0)