diff options
Diffstat (limited to 'test/wasm-only.fromasm.no-opts')
-rw-r--r-- | test/wasm-only.fromasm.no-opts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/wasm-only.fromasm.no-opts b/test/wasm-only.fromasm.no-opts index 3c717b31d..786bef708 100644 --- a/test/wasm-only.fromasm.no-opts +++ b/test/wasm-only.fromasm.no-opts @@ -737,10 +737,18 @@ ) ) (func $illegalParam (; 19 ;) (param $a i32) (param $x i64) (param $b f64) + (i32.store + (i32.const 50) + (get_local $a) + ) (i64.store (i32.const 100) (get_local $x) ) + (f64.store + (i32.const 200) + (get_local $b) + ) (call $illegalParam (i32.const 0) (get_local $x) |