Skip to content

Commit 89ca989

Browse files
committed
Wasm/runtime: put back caml_string_of_array
Brr is using this function. This is an alias for caml_string_of_uint8_array.
1 parent 260d742 commit 89ca989

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
* Compiler: exit-loop-early in more cases (#2077)
55
* Compiler/wasm: omit code pointer from closures when not used (#2059)
66

7+
## Bug fixes
8+
* Runtime/wasm: add back legacy function caml_string_of_array (#2081)
9+
710
# 6.1.1 (2025-07-07) - Lille
811

912
## Bug fixes

runtime/wasm/bigarray.wat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2025,6 +2025,7 @@
20252025
(ref.i31 (i32.const 0)))
20262026

20272027
(export "caml_bytes_of_uint8_array" (func $caml_string_of_uint8_array))
2028+
(export "caml_string_of_array" (func $caml_string_of_uint8_array)) ;; Used by brr
20282029
(func $caml_string_of_uint8_array (export "caml_string_of_uint8_array")
20292030
(param (ref eq)) (result (ref eq))
20302031
;; used to convert a typed array to a string

0 commit comments

Comments
 (0)