diff options
Diffstat (limited to 'src/literal.h')
-rw-r--r-- | src/literal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/literal.h b/src/literal.h index b21f08995..bba2b24d8 100644 --- a/src/literal.h +++ b/src/literal.h @@ -271,6 +271,8 @@ public: Literal min(const Literal& other) const; Literal max(const Literal& other) const; + Literal pmin(const Literal& other) const; + Literal pmax(const Literal& other) const; Literal copysign(const Literal& other) const; std::array<Literal, 16> getLanesSI8x16() const; @@ -424,6 +426,8 @@ public: Literal divF32x4(const Literal& other) const; Literal minF32x4(const Literal& other) const; Literal maxF32x4(const Literal& other) const; + Literal pminF32x4(const Literal& other) const; + Literal pmaxF32x4(const Literal& other) const; Literal absF64x2() const; Literal negF64x2() const; Literal sqrtF64x2() const; @@ -433,6 +437,8 @@ public: Literal divF64x2(const Literal& other) const; Literal minF64x2(const Literal& other) const; Literal maxF64x2(const Literal& other) const; + Literal pminF64x2(const Literal& other) const; + Literal pmaxF64x2(const Literal& other) const; Literal truncSatToSI32x4() const; Literal truncSatToUI32x4() const; Literal truncSatToSI64x2() const; |