summaryrefslogtreecommitdiff
path: root/test/passes/strip-target-features_roundtrip_print-features_all-features.wast
blob: fca7104536fed537c27223ce4ef60d09c8824fe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; Test that features enabled on the IR Module survive a round trip
;; even if the target features section is stripped first

(module
  (func $foo (result v128 externref)
    (tuple.make 2
      (v128.const i32x4 0 0 0 0)
      (ref.null extern)
    )
  )
  (func $bar (result v128 externref)
    (return_call $foo)
  )
)