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/min.wast.fromBinary.noDebugInfo | |
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/min.wast.fromBinary.noDebugInfo')
-rw-r--r-- | test/min.wast.fromBinary.noDebugInfo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/min.wast.fromBinary.noDebugInfo b/test/min.wast.fromBinary.noDebugInfo index 5776a4ea7..d6ad4be85 100644 --- a/test/min.wast.fromBinary.noDebugInfo +++ b/test/min.wast.fromBinary.noDebugInfo @@ -16,7 +16,7 @@ (local $var$2 f32) (tee_local $var$2 (f32.neg - (block $label$0 f32 + (block $label$0 (result f32) (i32.store (get_local $var$0) (get_local $var$1) @@ -29,7 +29,7 @@ ) ) (func $2 (type $2) (param $var$0 i32) (result i32) - (block $label$0 i32 + (block $label$0 (result i32) (block $label$1 (block $label$2 (br_table $label$2 $label$1 $label$2 @@ -50,7 +50,7 @@ ) ) (func $3 (type $3) (param $var$0 i32) (param $var$1 i32) (param $var$2 i32) (result i32) - (block $label$0 i32 + (block $label$0 (result i32) (get_local $var$2) ) ) |