diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 0839b3feb..3ed6edcb5 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -1337,6 +1337,12 @@ struct PrintExpressionContents case MaxVecF32x4: o << "f32x4.max"; break; + case PMinVecF32x4: + o << "f32x4.pmin"; + break; + case PMaxVecF32x4: + o << "f32x4.pmax"; + break; case AddVecF64x2: o << "f64x2.add"; break; @@ -1355,6 +1361,12 @@ struct PrintExpressionContents case MaxVecF64x2: o << "f64x2.max"; break; + case PMinVecF64x2: + o << "f64x2.pmin"; + break; + case PMaxVecF64x2: + o << "f64x2.pmax"; + break; case NarrowSVecI16x8ToVecI8x16: o << "i8x16.narrow_i16x8_s"; |