diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-21 19:01:47 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-21 19:01:47 -0700 |
commit | a180c863ac4b6882f47e5e05ceeebe94b1208a7d (patch) | |
tree | d1e5591a6075f67359f792438f848cd15e834bc9 /test | |
parent | 7b180b286a3df1a231454399869516ae8571d9bb (diff) | |
parent | 171668684ad91dc8d397ef411ce5fd337bc7a976 (diff) | |
download | binaryen-a180c863ac4b6882f47e5e05ceeebe94b1208a7d.tar.gz binaryen-a180c863ac4b6882f47e5e05ceeebe94b1208a7d.tar.bz2 binaryen-a180c863ac4b6882f47e5e05ceeebe94b1208a7d.zip |
Merge pull request #377 from WebAssembly/zero_x_b
More 0xb work
Diffstat (limited to 'test')
-rw-r--r-- | test/unit.wast.fromBinary | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/test/unit.wast.fromBinary b/test/unit.wast.fromBinary index e99eb1309..e80ba999e 100644 --- a/test/unit.wast.fromBinary +++ b/test/unit.wast.fromBinary @@ -68,8 +68,10 @@ ) (i32.const 0) ) - (br $label$0 - (f64.const -3.4) + (block $label$1 + (br $label$0 + (f64.const -3.4) + ) ) ) (if @@ -79,8 +81,10 @@ ) (f64.const 0) ) - (br $label$0 - (f64.const 5.6) + (block $label$2 + (br $label$0 + (f64.const 5.6) + ) ) ) (f64.const 1.2) @@ -96,8 +100,10 @@ (get_local $var$0) (f64.const 0) ) - (br $label$0 - (f64.const 1.2) + (block $label$1 + (br $label$0 + (f64.const 1.2) + ) ) ) (if @@ -105,8 +111,10 @@ (get_local $var$4) (f64.const 0) ) - (br $label$0 - (f64.const -3.4) + (block $label$2 + (br $label$0 + (f64.const -3.4) + ) ) ) (if @@ -114,8 +122,10 @@ (get_local $var$2) (i32.const 0) ) - (br $label$0 - (f64.const 5.6) + (block $label$3 + (br $label$0 + (f64.const 5.6) + ) ) ) (if @@ -123,8 +133,10 @@ (get_local $var$0) (get_local $var$1) ) - (br $label$0 - (get_local $var$0) + (block $label$4 + (br $label$0 + (get_local $var$0) + ) ) ) (get_local $var$1) |