[PATCH] D37984: [Polly][ForwardOpTree] Allow out-of-quota in examination part of forwardTree.

Tobias Grosser via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 18 23:25:01 PDT 2017


grosser accepted this revision.
grosser added a comment.
This revision is now accepted and ready to land.

LGTM. Thank you!



================
Comment at: lib/Transform/ForwardOpTree.cpp:267
     {
-      IslMaxOperationsGuard MaxOpGuard(IslCtx.get(), MaxOps);
+      auto QuotaScope = MaxOpGuard.enter();
 
----------------
Maybe use the real type instead of auto?


================
Comment at: lib/Transform/ForwardOpTree.cpp:450
 
+    auto QuotaScope = MaxOpGuard.enter(!DoIt);
+
----------------
Maybe use the real type instead of auto?


https://reviews.llvm.org/D37984





More information about the llvm-commits mailing list