diff options
Diffstat (limited to 'llvm/lib/CodeGen/ExpandVectorPredication.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ExpandVectorPredication.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/ExpandVectorPredication.cpp b/llvm/lib/CodeGen/ExpandVectorPredication.cpp index 5ca2238..6f4a2c9 100644 --- a/llvm/lib/CodeGen/ExpandVectorPredication.cpp +++ b/llvm/lib/CodeGen/ExpandVectorPredication.cpp @@ -609,6 +609,15 @@ Value *CachingVPExpander::expandPredication(VPIntrinsic &VPI) { case Intrinsic::vp_umin: case Intrinsic::vp_bswap: case Intrinsic::vp_bitreverse: + case Intrinsic::vp_ctpop: + case Intrinsic::vp_ctlz: + case Intrinsic::vp_cttz: + case Intrinsic::vp_sadd_sat: + case Intrinsic::vp_uadd_sat: + case Intrinsic::vp_ssub_sat: + case Intrinsic::vp_usub_sat: + case Intrinsic::vp_fshl: + case Intrinsic::vp_fshr: return expandPredicationToIntCall(Builder, VPI); case Intrinsic::vp_fabs: case Intrinsic::vp_sqrt: |