diff options
author | gnzlbg <gnzlbg@users.noreply.github.com> | 2019-03-28 20:12:56 +0100 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2019-03-28 12:12:56 -0700 |
commit | cef3040884af87b702c5d285c940669b5e5a4236 (patch) | |
tree | 8f835f84cb962d970e8293d4d7c98ba898a066d2 /test/interp/simd-bitselect.txt | |
parent | 19d9aae9c28dd8656a69a8d8f77d191ae2b90973 (diff) | |
download | wabt-cef3040884af87b702c5d285c940669b5e5a4236.tar.gz wabt-cef3040884af87b702c5d285c940669b5e5a4236.tar.bz2 wabt-cef3040884af87b702c5d285c940669b5e5a4236.zip |
Make v128.const i32x4 op conform to the SIMD draft (#1037)
* Update v128.const WAT parsing to conform to the SIMD draft
* manually fix indentation
* rename no_lanes to lane_count
* Fix parsing of OOB integers
* Update simd shuffle tests to new syntax
* Add the v128.const type tokens to the lexer.
Diffstat (limited to 'test/interp/simd-bitselect.txt')
-rw-r--r-- | test/interp/simd-bitselect.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/interp/simd-bitselect.txt b/test/interp/simd-bitselect.txt index aececcad..cef7aa83 100644 --- a/test/interp/simd-bitselect.txt +++ b/test/interp/simd-bitselect.txt @@ -3,12 +3,12 @@ (module ;; v128.bitselect (func (export "func_v128_bitselect_0") (result v128) - v128.const i32 0x00ff0001 0x00040002 0x55555555 0x00000004 - v128.const i32 0x00020001 0x00fe0002 0xaaaaaaaa 0x55000004 - v128.const i32 0xffffffff 0x00000000 0x55555555 0x55000004 + v128.const i32x4 0x00ff0001 0x00040002 0x55555555 0x00000004 + v128.const i32x4 0x00020001 0x00fe0002 0xaaaaaaaa 0x55000004 + v128.const i32x4 0xffffffff 0x00000000 0x55555555 0x55000004 v128.bitselect) ) (;; STDOUT ;;; -func_v128_bitselect_0() => v128:0x00ff0001 0x00fe0002 0xffffffff 0x00000004 +func_v128_bitselect_0() => v128 i32x4:0x00ff0001 0x00fe0002 0xffffffff 0x00000004 ;;; STDOUT ;;) |