summaryrefslogtreecommitdiff
path: root/test/unit.wast
diff options
context:
space:
mode:
authorjgravelle-google <jgravelle@google.com>2016-10-04 11:27:25 -0700
committerGitHub <noreply@github.com>2016-10-04 11:27:25 -0700
commita78bd60bc68993c746a9f236d01558e04b6765bd (patch)
treea72a50c27fef3fe785051a48bb685b4a12cc0d42 /test/unit.wast
parentbe02365a017f93febcae641705945e9df55ff907 (diff)
downloadbinaryen-a78bd60bc68993c746a9f236d01558e04b6765bd.tar.gz
binaryen-a78bd60bc68993c746a9f236d01558e04b6765bd.tar.bz2
binaryen-a78bd60bc68993c746a9f236d01558e04b6765bd.zip
Update i64 stores for 0xc (#731)
* Update i64 stores for 0xc * Update autogenerated LLVM tests * Update known torture test failures * Add i64.store32 test to unit.wast
Diffstat (limited to 'test/unit.wast')
-rw-r--r--test/unit.wast7
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)
+ )
+ )
)