diff options
author | Ben Smith <binji@chromium.org> | 2020-03-27 14:50:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-27 14:50:35 -0700 |
commit | ae2140ddc6969ef53599fe2fab81818de65db875 (patch) | |
tree | a65f32e9504e5d907be2d2ea50c148a23831d773 /src/interp/istream.cc | |
parent | 1f397a3c829869f23ae0ff3e311d22f12d8c72a9 (diff) | |
download | wabt-ae2140ddc6969ef53599fe2fab81818de65db875.tar.gz wabt-ae2140ddc6969ef53599fe2fab81818de65db875.tar.bz2 wabt-ae2140ddc6969ef53599fe2fab81818de65db875.zip |
Update testsuite (#1381)
* Add i{8x16,16x8,32x4}.abs instructions
* Implement IntAbs in interp-math.h
Diffstat (limited to 'src/interp/istream.cc')
-rw-r--r-- | src/interp/istream.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interp/istream.cc b/src/interp/istream.cc index a45eb57a..ad92ce97 100644 --- a/src/interp/istream.cc +++ b/src/interp/istream.cc @@ -212,6 +212,9 @@ Instr Istream::Read(Offset* offset) const { case Opcode::I8X16Splat: case Opcode::RefIsNull: case Opcode::V128Not: + case Opcode::I8X16Abs: + case Opcode::I16X8Abs: + case Opcode::I32X4Abs: // 0 immediates, 1 operand. instr.kind = InstrKind::Imm_0_Op_1; break; |