diff options
author | Sam Clegg <sbc@chromium.org> | 2017-06-12 16:50:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 16:50:28 -0700 |
commit | 68dc2eddc24844c7582cafa85afeb4023a47888f (patch) | |
tree | fcaedc839420fe43c555166420865d5aeef0dbfa /test/merge/dylib.wasm.combined.finalized | |
parent | 93c65f98b7a9b0977578dbf55778529efec646f1 (diff) | |
download | binaryen-68dc2eddc24844c7582cafa85afeb4023a47888f.tar.gz binaryen-68dc2eddc24844c7582cafa85afeb4023a47888f.tar.bz2 binaryen-68dc2eddc24844c7582cafa85afeb4023a47888f.zip |
Support new result syntax for if/loop/block (#1047)
Support both syntax formats in input since the old spec
tests still need to be parsable.
Diffstat (limited to 'test/merge/dylib.wasm.combined.finalized')
-rw-r--r-- | test/merge/dylib.wasm.combined.finalized | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/merge/dylib.wasm.combined.finalized b/test/merge/dylib.wasm.combined.finalized index 53f458e7b..2ef9ed135 100644 --- a/test/merge/dylib.wasm.combined.finalized +++ b/test/merge/dylib.wasm.combined.finalized @@ -26,8 +26,8 @@ (export "_str" (global $global$2)) (export "_foo" (func $_foo)) (func $_main (type $2) (result i32) - (block $label$0 i32 - (block $label$1 i32 + (block $label$0 (result i32) + (block $label$1 (result i32) (drop (call $import$1 (i32.const 1024) @@ -66,8 +66,8 @@ ) (func $_foo (type $1$0) (result i32) (local $var$0 i32) - (block $label$0 i32 - (block $label$1 i32 + (block $label$0 (result i32) + (block $label$1 (result i32) (set_local $var$0 (call $_main) ) |