diff options
author | Darin Morrison <darinmorrison@gmail.com> | 2020-10-26 10:37:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 09:37:13 -0700 |
commit | 30af7afe3c27fd2957036eb09453f74ecc75ac67 (patch) | |
tree | 9e79def62778d5253a3a5f881e15adbe4ec8a787 /test/interp/simd-load-store.txt | |
parent | 1eb5e2c5b7409a64c6e610fb74df3e5b61394cfc (diff) | |
download | wabt-30af7afe3c27fd2957036eb09453f74ecc75ac67.tar.gz wabt-30af7afe3c27fd2957036eb09453f74ecc75ac67.tar.bz2 wabt-30af7afe3c27fd2957036eb09453f74ecc75ac67.zip |
Update SIMD support (#1553)
* Update testsuite
* Update test results
* Disallow lane nums with optional + for simd ops
* Update simd support
* Mark `test/spec/func.txt` as failing
Co-authored-by: Darin Morrison <darinmorrison@users.noreply.github.com>
Diffstat (limited to 'test/interp/simd-load-store.txt')
-rw-r--r-- | test/interp/simd-load-store.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/interp/simd-load-store.txt b/test/interp/simd-load-store.txt index 3a307526..a8f07ce1 100644 --- a/test/interp/simd-load-store.txt +++ b/test/interp/simd-load-store.txt @@ -15,22 +15,22 @@ ;; v8x16 load_splat (func (export "v8x16_load_splat_0") (result v128) i32.const 6 - v8x16.load_splat) + v128.load8_splat) ;; v16x8 load_splat (func (export "v16x8_load_splat_0") (result v128) i32.const 6 - v16x8.load_splat) + v128.load16_splat) ;; v32x4 load_splat (func (export "v32x4_load_splat_0") (result v128) i32.const 4 - v32x4.load_splat) + v128.load32_splat) ;; v64x2 load_splat (func (export "v64x2_load_splat_0") (result v128) i32.const 0 - v64x2.load_splat) + v128.load64_splat) ;; v128 store (func (export "v128_store_0") (result v128) |