diff options
author | Keith Winstein <keithw@cs.stanford.edu> | 2023-12-05 09:53:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 09:53:44 -0800 |
commit | 4ce790d24c8ed71a7d23e9a9b4a5fc4ba704d48e (patch) | |
tree | 43980686a0a4c7f3e98998956589085d96d5f641 /test/dump/br-loop-inner.txt | |
parent | c3315f035de87b5efef3ce27db0986cd1372d968 (diff) | |
download | wabt-4ce790d24c8ed71a7d23e9a9b4a5fc4ba704d48e.tar.gz wabt-4ce790d24c8ed71a7d23e9a9b4a5fc4ba704d48e.tar.bz2 wabt-4ce790d24c8ed71a7d23e9a9b4a5fc4ba704d48e.zip |
WastParser: tighten parsing of folded `if` (#2349)
This makes the `then` block mandatory per the spec, and parses
multiple foldedinstrs in the `if` predicate (exercised by the new
if.wast test).
Diffstat (limited to 'test/dump/br-loop-inner.txt')
-rw-r--r-- | test/dump/br-loop-inner.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dump/br-loop-inner.txt b/test/dump/br-loop-inner.txt index 2b38abf6..1ac9ae61 100644 --- a/test/dump/br-loop-inner.txt +++ b/test/dump/br-loop-inner.txt @@ -4,9 +4,9 @@ (func (block $exit (loop $cont (if (i32.const 1) - (br $exit)) + (then (br $exit))) (if (i32.const 2) - (br $cont)))))) + (then (br $cont))))))) (;; STDERR ;;; 0000000: 0061 736d ; WASM_BINARY_MAGIC 0000004: 0100 0000 ; WASM_BINARY_VERSION |