blob: f073de7a4d626a16273f801fe28e84d22e3b1bf5 (
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
(v128.const i32x4 0 0 0 0)
(ref.null extern)
)
)
(func $bar (result v128 externref)
(return_call $foo)
)
)
|