summaryrefslogtreecommitdiff
path: root/src/ir/cost.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/cost.h')
-rw-r--r--src/ir/cost.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ir/cost.h b/src/ir/cost.h
index 2c503da02..8092d4ba2 100644
--- a/src/ir/cost.h
+++ b/src/ir/cost.h
@@ -687,6 +687,12 @@ struct CostAnalyzer : public Visitor<CostAnalyzer, Index> {
case MaxVecF32x4:
ret = 1;
break;
+ case PMinVecF32x4:
+ ret = 1;
+ break;
+ case PMaxVecF32x4:
+ ret = 1;
+ break;
case AddVecF64x2:
ret = 1;
break;
@@ -705,6 +711,12 @@ struct CostAnalyzer : public Visitor<CostAnalyzer, Index> {
case MaxVecF64x2:
ret = 1;
break;
+ case PMinVecF64x2:
+ ret = 1;
+ break;
+ case PMaxVecF64x2:
+ ret = 1;
+ break;
case NarrowSVecI16x8ToVecI8x16:
ret = 1;
break;