diff options
Diffstat (limited to 'src/literal.h')
-rw-r--r-- | src/literal.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/literal.h b/src/literal.h index 2295a126e..8bfee38c1 100644 --- a/src/literal.h +++ b/src/literal.h @@ -429,6 +429,10 @@ public: Literal maxF32x4(const Literal& other) const; Literal pminF32x4(const Literal& other) const; Literal pmaxF32x4(const Literal& other) const; + Literal ceilF32x4() const; + Literal floorF32x4() const; + Literal truncF32x4() const; + Literal nearestF32x4() const; Literal absF64x2() const; Literal negF64x2() const; Literal sqrtF64x2() const; @@ -440,6 +444,10 @@ public: Literal maxF64x2(const Literal& other) const; Literal pminF64x2(const Literal& other) const; Literal pmaxF64x2(const Literal& other) const; + Literal ceilF64x2() const; + Literal floorF64x2() const; + Literal truncF64x2() const; + Literal nearestF64x2() const; Literal truncSatToSI32x4() const; Literal truncSatToUI32x4() const; Literal truncSatToSI64x2() const; |