diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-08-31 16:53:12 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-09-07 09:55:58 -0700 |
commit | e62f54d9d38e8f6b999d5f18f052424b7d603b6b (patch) | |
tree | 6e9af7b90a6563cfe15db6ab6325e8eb345a9e4c /test/unit.wast.fromBinary | |
parent | f1c74afc64d9f195729e1ad7e203f27566248e26 (diff) | |
download | binaryen-e62f54d9d38e8f6b999d5f18f052424b7d603b6b.tar.gz binaryen-e62f54d9d38e8f6b999d5f18f052424b7d603b6b.tar.bz2 binaryen-e62f54d9d38e8f6b999d5f18f052424b7d603b6b.zip |
new import syntax in spec repo
Diffstat (limited to 'test/unit.wast.fromBinary')
-rw-r--r-- | test/unit.wast.fromBinary | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit.wast.fromBinary b/test/unit.wast.fromBinary index 0e681de27..ad0f0786a 100644 --- a/test/unit.wast.fromBinary +++ b/test/unit.wast.fromBinary @@ -9,9 +9,9 @@ (type $5 (func (result i32))) (type $6 (func (param i32) (result i32))) (type $7 (func (param f64) (result f64))) - (import $import$0 "env" "_emscripten_asm_const_vi") - (import $import$1 "asm2wasm" "f64-to-int" (param f64) (result i32)) - (import $import$2 "asm2wasm" "f64-rem" (param f64 f64) (result f64)) + (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))) (export "big_negative" $big_negative) (table 10 anyfunc) (elem (i32.const 0) $z $big_negative $z $z $w $w $importedDoubles $w $z $cneg) |