diff options
Diffstat (limited to 'test/unit.wast')
-rw-r--r-- | test/unit.wast | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit.wast b/test/unit.wast index 56d77310a..9aa256298 100644 --- a/test/unit.wast +++ b/test/unit.wast @@ -10,6 +10,7 @@ (type $6 (func (param i32) (result i32))) (type $7 (func (param f64) (result f64))) (type $8 (func (result i64))) + (type $9 (func (param i32 i64))) (import "env" "_emscripten_asm_const_vi" (func $_emscripten_asm_const_vi)) (import "asm2wasm" "f64-to-int" (func $f64-to-int (param f64) (result i32))) (import "asm2wasm" "f64-rem" (func $f64-rem (param f64 f64) (result f64))) @@ -440,4 +441,10 @@ (func $big-i64 (type $8) (result i64) (i64.const -9218868437227405313) ) + (func $i64-store32 (type $9) (param $0 i32) (param $1 i64) + (i64.store32 + (get_local $0) + (get_local $1) + ) + ) ) |