blob: 8fe206012852de871f2ac01506b2bb6f312aa124 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
;; Test that we error properly on an if with a bad multivalue (inputs).
;; File contents:
;;
;; (module
;; (func $test
;; i32.const 0
;; i32.const 1
;; (if (param i32)
;; (then
;; drop
;; )
;; (else
;; drop
;; )
;; )
;; )
;; )
;; RUN: not wasm-opt -all %s.wasm 2>&1 | filecheck %s
;; CHECK: control flow inputs are not supported yet
|