[llvm] [VPlan] Only skip expansion for SCEVUnknown if it isn't an instruction. (PR #125235)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 10 08:34:32 PST 2025


================
@@ -3335,7 +3335,7 @@ void VPExpandSCEVRecipe::execute(VPTransformState &State) {
   }
 
   const DataLayout &DL = State.CFG.PrevBB->getDataLayout();
-  SCEVExpander Exp(SE, DL, "induction");
+  SCEVExpander Exp(SE, DL, "induction", true);
----------------
fhahn wrote:

Done thanks

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


More information about the llvm-commits mailing list