[polly] Bound ISL operations during DeLICM scalar collapsing (PR #203073)
Shikhar Jain via llvm-commits
llvm-commits at lists.llvm.org
Sun Jul 12 11:34:35 PDT 2026
================
@@ -1200,14 +1227,14 @@ class DeLICMImpl final : public ZoneAlgorithm {
isl::union_map EltKnown, EltWritten;
{
- IslMaxOperationsGuard MaxOpGuard(IslCtx.get(), DelicmMaxOps);
-
+ IslQuotaScope MaxOpScope = MaxOpGuard.enter();
computeCommon();
EltUnused = computeLifetime();
EltKnown = computeKnown(true, false);
EltWritten = computeWritten();
}
+
----------------
ShikharJ-Corp wrote:
Sorry, the earlier push still had the whitespace change. It's fixed in the latest commit now.
https://github.com/llvm/llvm-project/pull/203073
More information about the llvm-commits
mailing list