[llvm] ba7e273 - [VPlan] Use VP_CLASSOF_IMPL in VPWidenRecipe. (NFC)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 2 03:40:30 PST 2025


Author: Florian Hahn
Date: 2025-03-02T11:40:23Z
New Revision: ba7e27381f1ce56b46839dca89e5d56ea170714e

URL: https://github.com/llvm/llvm-project/commit/ba7e27381f1ce56b46839dca89e5d56ea170714e
DIFF: https://github.com/llvm/llvm-project/commit/ba7e27381f1ce56b46839dca89e5d56ea170714e.diff

LOG: [VPlan] Use VP_CLASSOF_IMPL in VPWidenRecipe. (NFC)

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/VPlan.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index 70e684826ed2d..0f1fa517be000 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -1111,14 +1111,7 @@ class VPWidenRecipe : public VPRecipeWithIRFlags {
     return R;
   }
 
-  static inline bool classof(const VPRecipeBase *R) {
-    return R->getVPDefID() == VPRecipeBase::VPWidenSC;
-  }
-
-  static inline bool classof(const VPUser *U) {
-    auto *R = dyn_cast<VPRecipeBase>(U);
-    return R && classof(R);
-  }
+  VP_CLASSOF_IMPL(VPDef::VPWidenSC)
 
   /// Produce a widened instruction using the opcode and operands of the recipe,
   /// processing State.VF elements.


        


More information about the llvm-commits mailing list