[llvm] [VPlan] Split out VPBlendRecipe simplifications from simplifyRecipes. NFC (PR #134073)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 05:58:09 PDT 2025
================
@@ -1092,6 +1024,85 @@ void VPlanTransforms::simplifyRecipes(VPlan &Plan, Type &CanonicalIVTy) {
}
}
+void VPlanTransforms::simplifyBlends(VPlan &Plan) {
+ using namespace llvm::VPlanPatternMatch;
+ ReversePostOrderTraversal<VPBlockDeepTraversalWrapper<VPBlockBase *>> RPOT(
+ Plan.getEntry());
+ SetVector<VPRecipeBase *> Worklist;
----------------
lukel97 wrote:
Woops, removed!
https://github.com/llvm/llvm-project/pull/134073
More information about the llvm-commits
mailing list