From b3e22d29451fbf52521d59ea34e8a5d735c4149c Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Fri, 9 Aug 2024 09:13:33 -0700 Subject: [FP16] Implement relation operations. (#6825) Specified at https://github.com/WebAssembly/half-precision/blob/main/proposals/half-precision/Overview.md --- src/passes/Print.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/passes/Print.cpp') diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index fd22f1b71..5c83e89f1 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -1689,6 +1689,24 @@ struct PrintExpressionContents case GeSVecI64x2: o << "i64x2.ge_s"; break; + case EqVecF16x8: + o << "f16x8.eq"; + break; + case NeVecF16x8: + o << "f16x8.ne"; + break; + case LtVecF16x8: + o << "f16x8.lt"; + break; + case GtVecF16x8: + o << "f16x8.gt"; + break; + case LeVecF16x8: + o << "f16x8.le"; + break; + case GeVecF16x8: + o << "f16x8.ge"; + break; case EqVecF32x4: o << "f32x4.eq"; break; -- cgit v1.2.3