Skip to content

Commit 7494238

Browse files
committed
Revert "Flag use-js-string default to false for wasm_of_ocaml"
This reverts commit a0133d0.
1 parent ac25e35 commit 7494238

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler/lib/config.ml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,7 @@ let target () =
196196
let set_target (t : [ `JavaScript | `Wasm ]) =
197197
(match t with
198198
| `JavaScript -> Targetint.set_num_bits 32
199-
| `Wasm ->
200-
Targetint.set_num_bits 31;
201-
Flag.disable "use-js-string");
199+
| `Wasm -> Targetint.set_num_bits 31);
202200
target_ := (t :> [ `JavaScript | `Wasm | `None ])
203201

204202
type effects_backend =

0 commit comments

Comments
 (0)