[llvm] [VPlan] Introduce VPWidenIntrinsicRecipe to separate from libcall. (PR #110486)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 4 05:28:21 PDT 2024


================
@@ -79,6 +79,8 @@ bool VPRecipeBase::mayWriteToMemory() const {
     return !cast<VPWidenCallRecipe>(this)
                 ->getCalledScalarFunction()
                 ->onlyReadsMemory();
+  case VPWidenIntrinsicSC:
+    return false;
----------------
fhahn wrote:

Yep, updated to store read/write/sideeffcts in recipe.

https://github.com/llvm/llvm-project/pull/110486


More information about the llvm-commits mailing list