summaryrefslogtreecommitdiff
path: root/test/passes/roundtrip.wast
blob: aec07657fe7c06a167b04a17b7f340cb07002ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(module
  (func $foo (export "foo")
    ;; binaryen skips unreachable code while reading the binary format
    (unreachable)
    (nop)
    (nop)
    (nop)
    (nop)
    (nop)
  )
)

(module
 (memory 1 1)
 (table 0 funcref)
)