Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
hhugo committed Oct 11, 2024
1 parent dd4f273 commit a490036
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
requested at compile time (--enable with-js-error) or at startup (OCAMLRUNPARAM=b=1)
* Runtime: allow dynlink of precompiled js with separate compilation (#1676)
* Runtime: reimplement the runtime of weak and ephemeron (#1707)
* Runtime: refactor mlBytes
* Lib: Modify Typed_array API for compatibility with WebAssembly
* Toplevel: no longer set globals for toplevel initialization

Expand Down
1 change: 0 additions & 1 deletion compiler/tests-check-prim/main.output
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ caml_dynlink_close_lib
caml_dynlink_get_current_libs
caml_dynlink_lookup_symbol
caml_dynlink_open_lib
caml_fill_string
caml_int64_add_native
caml_int64_and_native
caml_int64_div_native
Expand Down
1 change: 0 additions & 1 deletion compiler/tests-check-prim/main.output5
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ caml_dynlink_close_lib
caml_dynlink_get_current_libs
caml_dynlink_lookup_symbol
caml_dynlink_open_lib
caml_fill_string
caml_int_as_pointer
caml_reset_afl_instrumentation
caml_signbit
Expand Down
1 change: 0 additions & 1 deletion compiler/tests-check-prim/unix-unix.output
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ caml_dynlink_close_lib
caml_dynlink_get_current_libs
caml_dynlink_lookup_symbol
caml_dynlink_open_lib
caml_fill_string
caml_int64_add_native
caml_int64_and_native
caml_int64_div_native
Expand Down
1 change: 0 additions & 1 deletion compiler/tests-check-prim/unix-unix.output5
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ caml_dynlink_close_lib
caml_dynlink_get_current_libs
caml_dynlink_lookup_symbol
caml_dynlink_open_lib
caml_fill_string
caml_int_as_pointer
caml_reset_afl_instrumentation
caml_signbit
Expand Down
1 change: 1 addition & 0 deletions runtime/mlBytes.js
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,7 @@ function caml_bytes_greaterthan(s1, s2) {
}

//Provides: caml_fill_bytes
//Alias: caml_fill_string
function caml_fill_bytes(s, i, l, c) {
if (l > 0) {
for (l += i; i < l; i++) s.a[i] = c;
Expand Down

0 comments on commit a490036

Please sign in to comment.