diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-01-06 21:28:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-06 21:28:37 -0800 |
commit | 6f91af190effd7b8a5969314dd4fb3d2ec540524 (patch) | |
tree | d268e2f364d31f63921f316833b806cf5da11c8e /test/spec/simd.wast | |
parent | c33b333bc403af7878ac7b1850862bdaa78c8753 (diff) | |
download | binaryen-6f91af190effd7b8a5969314dd4fb3d2ec540524.tar.gz binaryen-6f91af190effd7b8a5969314dd4fb3d2ec540524.tar.bz2 binaryen-6f91af190effd7b8a5969314dd4fb3d2ec540524.zip |
Fix SIMD test placement (#1853)
Diffstat (limited to 'test/spec/simd.wast')
-rw-r--r-- | test/spec/simd.wast | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/spec/simd.wast b/test/spec/simd.wast index e4ac42322..b0c7c8e2f 100644 --- a/test/spec/simd.wast +++ b/test/spec/simd.wast @@ -137,11 +137,11 @@ (func (export "i64x2.shl") (param $0 v128) (param $1 i32) (result v128) (i64x2.shl (get_local $0) (get_local $1))) (func (export "i64x2.shr_s") (param $0 v128) (param $1 i32) (result v128) (i64x2.shr_s (get_local $0) (get_local $1))) (func (export "i64x2.shr_u") (param $0 v128) (param $1 i32) (result v128) (i64x2.shr_u (get_local $0) (get_local $1))) + (func (export "i64x2.add") (param $0 v128) (param $1 v128) (result v128) (i64x2.add (get_local $0) (get_local $1))) + (func (export "i64x2.sub") (param $0 v128) (param $1 v128) (result v128) (i64x2.sub (get_local $0) (get_local $1))) (func (export "f32x4.abs") (param $0 v128) (result v128) (f32x4.abs (get_local $0))) (func (export "f32x4.neg") (param $0 v128) (result v128) (f32x4.neg (get_local $0))) (func (export "f32x4.sqrt") (param $0 v128) (result v128) (f32x4.sqrt (get_local $0))) - (func (export "i64x2.add") (param $0 v128) (param $1 v128) (result v128) (i64x2.add (get_local $0) (get_local $1))) - (func (export "i64x2.sub") (param $0 v128) (param $1 v128) (result v128) (i64x2.sub (get_local $0) (get_local $1))) (func (export "f32x4.add") (param $0 v128) (param $1 v128) (result v128) (f32x4.add (get_local $0) (get_local $1))) (func (export "f32x4.sub") (param $0 v128) (param $1 v128) (result v128) (f32x4.sub (get_local $0) (get_local $1))) (func (export "f32x4.mul") (param $0 v128) (param $1 v128) (result v128) (f32x4.mul (get_local $0) (get_local $1))) |