From fc7346918f8d15ce45639472f00fea5fa8102ff0 Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Tue, 19 May 2020 10:17:07 -0700 Subject: Implement i64x2.mul (#2860) This is the only instruction in the current spec proposal that had not yet been implemnented in the tools. --- scripts/gen-s-parser.py | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py index fe6513de2..b657ea909 100755 --- a/scripts/gen-s-parser.py +++ b/scripts/gen-s-parser.py @@ -424,6 +424,7 @@ instructions = [ ("i64x2.shr_u", "makeSIMDShift(s, SIMDShiftOp::ShrUVecI64x2)"), ("i64x2.add", "makeBinary(s, BinaryOp::AddVecI64x2)"), ("i64x2.sub", "makeBinary(s, BinaryOp::SubVecI64x2)"), + ("i64x2.mul", "makeBinary(s, BinaryOp::MulVecI64x2)"), ("f32x4.abs", "makeUnary(s, UnaryOp::AbsVecF32x4)"), ("f32x4.neg", "makeUnary(s, UnaryOp::NegVecF32x4)"), ("f32x4.sqrt", "makeUnary(s, UnaryOp::SqrtVecF32x4)"), -- cgit v1.2.3