File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
llvm/lib/Transforms/Vectorize Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -532,7 +532,6 @@ class VPSingleDefRecipe : public VPRecipeBase, public VPValue {
532
532
case VPRecipeBase::VPWidenPointerInductionSC:
533
533
case VPRecipeBase::VPReductionPHISC:
534
534
case VPRecipeBase::VPScalarCastSC:
535
- case VPRecipeBase::VPScalarPHISC:
536
535
case VPRecipeBase::VPPartialReductionSC:
537
536
return true ;
538
537
case VPRecipeBase::VPBranchOnMaskSC:
@@ -2819,8 +2818,8 @@ class VPCanonicalIVPHIRecipe : public VPHeaderPHIRecipe {
2819
2818
VP_CLASSOF_IMPL (VPDef::VPCanonicalIVPHISC)
2820
2819
2821
2820
void execute (VPTransformState &State) override {
2822
- llvm_unreachable (
2823
- " cannot execute this recipe, should be replaced by VPScalarPHIRecipe " );
2821
+ llvm_unreachable (" cannot execute this recipe, should be replaced by a "
2822
+ " scalar phi recipe " );
2824
2823
}
2825
2824
2826
2825
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
@@ -2905,8 +2904,8 @@ class VPEVLBasedIVPHIRecipe : public VPHeaderPHIRecipe {
2905
2904
VP_CLASSOF_IMPL (VPDef::VPEVLBasedIVPHISC)
2906
2905
2907
2906
void execute (VPTransformState &State) override {
2908
- llvm_unreachable (
2909
- " cannot execute this recipe, should be replaced by VPScalarPHIRecipe " );
2907
+ llvm_unreachable (" cannot execute this recipe, should be replaced by a "
2908
+ " scalar phi recipe " );
2910
2909
}
2911
2910
2912
2911
// / Return the cost of this VPEVLBasedIVPHIRecipe.
Original file line number Diff line number Diff line change @@ -360,7 +360,6 @@ class VPDef {
360
360
VPFirstOrderRecurrencePHISC,
361
361
VPWidenIntOrFpInductionSC,
362
362
VPWidenPointerInductionSC,
363
- VPScalarPHISC,
364
363
VPReductionPHISC,
365
364
// END: SubclassID for recipes that inherit VPHeaderPHIRecipe
366
365
// END: Phi-like recipes
You can’t perform that action at this time.
0 commit comments