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. --- src/passes/Print.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/passes/Print.cpp') diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 3ed6edcb5..62eac9b06 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -1318,6 +1318,9 @@ struct PrintExpressionContents case SubVecI64x2: o << "i64x2.sub"; break; + case MulVecI64x2: + o << "i64x2.mul"; + break; case AddVecF32x4: o << "f32x4.add"; -- cgit v1.2.3