diff options
Diffstat (limited to 'test/let.wasm.fromBinary')
-rw-r--r-- | test/let.wasm.fromBinary | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/test/let.wasm.fromBinary b/test/let.wasm.fromBinary index d3f1760ce..de51c1045 100644 --- a/test/let.wasm.fromBinary +++ b/test/let.wasm.fromBinary @@ -20,7 +20,9 @@ ) (block (drop - (local.get $2) + (ref.as_non_null + (local.get $2) + ) ) (drop (local.get $0) @@ -35,10 +37,14 @@ ) (block (drop - (local.get $2) + (ref.as_non_null + (local.get $2) + ) ) (drop - (local.get $3) + (ref.as_non_null + (local.get $3) + ) ) (drop (local.get $0) @@ -57,7 +63,9 @@ ) (block (drop - (local.get $4) + (ref.as_non_null + (local.get $4) + ) ) (drop (local.get $0) |