[PATCH] D114650: [SCEV] Construct SCEV iteratively.

Florian Hahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Jun 25 08:44:32 PDT 2022


fhahn marked an inline comment as done.
fhahn added inline comments.


================
Comment at: llvm/lib/Analysis/ScalarEvolution.cpp:7232
+    if (!DT.isReachableFromEntry(I->getParent()))
+      return getUnknown(UndefValue::get(V->getType()));
+  } else if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
----------------
nlopes wrote:
> Poison, poison! :)
This is unrelated to this patch, I created D128586. I'll update things here once/if D128586 goes in


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D114650/new/

https://reviews.llvm.org/D114650



More information about the llvm-commits mailing list