@@ -1981,10 +1981,6 @@ struct VPFirstOrderRecurrencePHIRecipe : public VPHeaderPHIRecipe {
1981
1981
1982
1982
VP_CLASSOF_IMPL (VPDef::VPFirstOrderRecurrencePHISC)
1983
1983
1984
- static inline bool classof (const VPHeaderPHIRecipe *R) {
1985
- return R->getVPDefID () == VPDef::VPFirstOrderRecurrencePHISC;
1986
- }
1987
-
1988
1984
VPFirstOrderRecurrencePHIRecipe *clone () override {
1989
1985
return new VPFirstOrderRecurrencePHIRecipe (
1990
1986
cast<PHINode>(getUnderlyingInstr ()), *getOperand (0 ));
@@ -2052,10 +2048,6 @@ class VPReductionPHIRecipe : public VPHeaderPHIRecipe,
2052
2048
2053
2049
VP_CLASSOF_IMPL (VPDef::VPReductionPHISC)
2054
2050
2055
- static inline bool classof(const VPHeaderPHIRecipe *R) {
2056
- return R->getVPDefID () == VPDef::VPReductionPHISC;
2057
- }
2058
-
2059
2051
// / Generate the phi/select nodes.
2060
2052
void execute(VPTransformState &State) override ;
2061
2053
@@ -2874,10 +2866,6 @@ class VPCanonicalIVPHIRecipe : public VPHeaderPHIRecipe {
2874
2866
2875
2867
VP_CLASSOF_IMPL (VPDef::VPCanonicalIVPHISC)
2876
2868
2877
- static inline bool classof (const VPHeaderPHIRecipe *D) {
2878
- return D->getVPDefID () == VPDef::VPCanonicalIVPHISC;
2879
- }
2880
-
2881
2869
void execute (VPTransformState &State) override {
2882
2870
llvm_unreachable (
2883
2871
" cannot execute this recipe, should be replaced by VPScalarPHIRecipe" );
@@ -2937,10 +2925,6 @@ class VPActiveLaneMaskPHIRecipe : public VPHeaderPHIRecipe {
2937
2925
2938
2926
VP_CLASSOF_IMPL (VPDef::VPActiveLaneMaskPHISC)
2939
2927
2940
- static inline bool classof (const VPHeaderPHIRecipe *D) {
2941
- return D->getVPDefID () == VPDef::VPActiveLaneMaskPHISC;
2942
- }
2943
-
2944
2928
// / Generate the active lane mask phi of the vector loop.
2945
2929
void execute (VPTransformState &State) override ;
2946
2930
@@ -2968,10 +2952,6 @@ class VPEVLBasedIVPHIRecipe : public VPHeaderPHIRecipe {
2968
2952
2969
2953
VP_CLASSOF_IMPL (VPDef::VPEVLBasedIVPHISC)
2970
2954
2971
- static inline bool classof (const VPHeaderPHIRecipe *D) {
2972
- return D->getVPDefID () == VPDef::VPEVLBasedIVPHISC;
2973
- }
2974
-
2975
2955
void execute (VPTransformState &State) override {
2976
2956
llvm_unreachable (
2977
2957
" cannot execute this recipe, should be replaced by VPScalarPHIRecipe" );
0 commit comments