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 260d742 commit 89ca989Copy full SHA for 89ca989
CHANGES.md
@@ -4,6 +4,9 @@
4
* Compiler: exit-loop-early in more cases (#2077)
5
* Compiler/wasm: omit code pointer from closures when not used (#2059)
6
7
+## Bug fixes
8
+* Runtime/wasm: add back legacy function caml_string_of_array (#2081)
9
+
10
# 6.1.1 (2025-07-07) - Lille
11
12
## Bug fixes
runtime/wasm/bigarray.wat
@@ -2025,6 +2025,7 @@
2025
(ref.i31 (i32.const 0)))
2026
2027
(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
2029
(func $caml_string_of_uint8_array (export "caml_string_of_uint8_array")
2030
(param (ref eq)) (result (ref eq))
2031
;; used to convert a typed array to a string
0 commit comments