[llvm] [VPlan] Introduce VPWidenIntrinsicRecipe to separate from libcall. (PR #110486)
Mel Chen via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 7 03:34:23 PDT 2024
================
@@ -79,6 +79,9 @@ bool VPRecipeBase::mayWriteToMemory() const {
return !cast<VPWidenCallRecipe>(this)
->getCalledScalarFunction()
->onlyReadsMemory();
+ case VPWidenIntrinsicSC:
+ return cast<VPWidenIntrinsicRecipe>(this)->mayWriteToMemory();
+ ;
----------------
Mel-Chen wrote:
Redundant semicolon
https://github.com/llvm/llvm-project/pull/110486
More information about the llvm-commits
mailing list