[llvm] 3463174 - [VPlan] Get DataLayout from SE in VPExpandSCEVRecipe::execute (NFC)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 22 08:50:23 PDT 2025


Author: Florian Hahn
Date: 2025-03-22T15:49:57Z
New Revision: 34631744af05ce59a94e736eb7feb4ac69677fbe

URL: https://github.com/llvm/llvm-project/commit/34631744af05ce59a94e736eb7feb4ac69677fbe
DIFF: https://github.com/llvm/llvm-project/commit/34631744af05ce59a94e736eb7feb4ac69677fbe.diff

LOG: [VPlan] Get DataLayout from SE in VPExpandSCEVRecipe::execute (NFC)

This doesn't rely on State.CFG.

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
index 16d353b53b3ef..2af29c8c72471 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
@@ -3455,7 +3455,7 @@ void VPExpandSCEVRecipe::execute(VPTransformState &State) {
     return;
   }
 
-  const DataLayout &DL = State.CFG.PrevBB->getDataLayout();
+  const DataLayout &DL = SE.getDataLayout();
   SCEVExpander Exp(SE, DL, "induction", /*PreserveLCSSA=*/true);
 
   Value *Res = Exp.expandCodeFor(Expr, Expr->getType(),


        


More information about the llvm-commits mailing list