[llvm] [VPlan] Simplify BLEND %a, %b, NOT(%m) -> BLEND %b, %a, %m. (PR #128375)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 12:16:21 PST 2025
================
@@ -851,8 +851,20 @@ static void simplifyRecipe(VPRecipeBase &R, VPTypeAnalysis &TypeInfo) {
return;
}
- if (Blend->isNormalized())
+ if (Blend->isNormalized()) {
----------------
ayalz wrote:
Better placed below - after normalizing Blend if needed?
https://github.com/llvm/llvm-project/pull/128375
More information about the llvm-commits
mailing list