Skip to content

Commit a490036

Browse files
committed
WIP
1 parent dd4f273 commit a490036

File tree

6 files changed

+2
-4
lines changed

6 files changed

+2
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
requested at compile time (--enable with-js-error) or at startup (OCAMLRUNPARAM=b=1)
2424
* Runtime: allow dynlink of precompiled js with separate compilation (#1676)
2525
* Runtime: reimplement the runtime of weak and ephemeron (#1707)
26+
* Runtime: refactor mlBytes
2627
* Lib: Modify Typed_array API for compatibility with WebAssembly
2728
* Toplevel: no longer set globals for toplevel initialization
2829

compiler/tests-check-prim/main.output

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ caml_dynlink_close_lib
88
caml_dynlink_get_current_libs
99
caml_dynlink_lookup_symbol
1010
caml_dynlink_open_lib
11-
caml_fill_string
1211
caml_int64_add_native
1312
caml_int64_and_native
1413
caml_int64_div_native

compiler/tests-check-prim/main.output5

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ caml_dynlink_close_lib
1010
caml_dynlink_get_current_libs
1111
caml_dynlink_lookup_symbol
1212
caml_dynlink_open_lib
13-
caml_fill_string
1413
caml_int_as_pointer
1514
caml_reset_afl_instrumentation
1615
caml_signbit

compiler/tests-check-prim/unix-unix.output

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ caml_dynlink_close_lib
88
caml_dynlink_get_current_libs
99
caml_dynlink_lookup_symbol
1010
caml_dynlink_open_lib
11-
caml_fill_string
1211
caml_int64_add_native
1312
caml_int64_and_native
1413
caml_int64_div_native

compiler/tests-check-prim/unix-unix.output5

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ caml_dynlink_close_lib
1010
caml_dynlink_get_current_libs
1111
caml_dynlink_lookup_symbol
1212
caml_dynlink_open_lib
13-
caml_fill_string
1413
caml_int_as_pointer
1514
caml_reset_afl_instrumentation
1615
caml_signbit

runtime/mlBytes.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,7 @@ function caml_bytes_greaterthan(s1, s2) {
572572
}
573573

574574
//Provides: caml_fill_bytes
575+
//Alias: caml_fill_string
575576
function caml_fill_bytes(s, i, l, c) {
576577
if (l > 0) {
577578
for (l += i; i < l; i++) s.a[i] = c;

0 commit comments

Comments
 (0)