[llvm] [VPlan] Update final exit value via VPlan. (PR #112147)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 31 03:29:34 PST 2024
================
@@ -1422,6 +1422,11 @@ class VPIRInstruction : public VPRecipeBase {
"Op must be an operand of the recipe");
return true;
}
+ bool onlyFirstLaneUsed(const VPValue *Op) const override {
+ assert(is_contained(operands(), Op) &&
+ "Op must be an operand of the recipe");
+ return true;
+ }
----------------
ayalz wrote:
Fix can be committed independently, but tested only now?
https://github.com/llvm/llvm-project/pull/112147
More information about the llvm-commits
mailing list