diff options
author | jgravelle-google <jgravelle@google.com> | 2016-10-04 11:27:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-04 11:27:25 -0700 |
commit | a78bd60bc68993c746a9f236d01558e04b6765bd (patch) | |
tree | a72a50c27fef3fe785051a48bb685b4a12cc0d42 /test/unit.wast.fromBinary.noDebugInfo | |
parent | be02365a017f93febcae641705945e9df55ff907 (diff) | |
download | binaryen-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.fromBinary.noDebugInfo')
-rw-r--r-- | test/unit.wast.fromBinary.noDebugInfo | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit.wast.fromBinary.noDebugInfo b/test/unit.wast.fromBinary.noDebugInfo index d12ac3578..0b8ca6b2d 100644 --- a/test/unit.wast.fromBinary.noDebugInfo +++ b/test/unit.wast.fromBinary.noDebugInfo @@ -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 $import$0)) (import "asm2wasm" "f64-to-int" (func $import$1 (param f64) (result i32))) (import "asm2wasm" "f64-rem" (func $import$2 (param f64 f64) (result f64))) @@ -450,5 +451,11 @@ (func $21 (type $8) (result i64) (i64.const -9218868437227405313) ) + (func $22 (type $9) (param $var$0 i32) (param $var$1 i64) + (i64.store32 + (get_local $var$0) + (get_local $var$1) + ) + ) ) |