blob: 78f2ed99e51673d2a81ddb817950de1e7a74ad72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;; A function type that uses a SIMD type requires the SIMD feature.
;; RUN: not wasm-opt --enable-reference-types %s 2>&1 | filecheck %s
;; CHECK: all used types should be allowed
(module
(type $simd-user (func (param v128)))
(global $g (ref null $simd-user) (ref.null func))
)
;; But it passes with the feature enabled.
;; RUN: wasm-opt --enable-reference-types --enable-simd %s
|