[polly] r303405 - [ScopInfo] Fix typo in documentation

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Thu May 18 21:01:52 PDT 2017


Author: grosser
Date: Thu May 18 23:01:52 2017
New Revision: 303405

URL: http://llvm.org/viewvc/llvm-project?rev=303405&view=rev
Log:
[ScopInfo] Fix typo in documentation

Modified:
    polly/trunk/lib/Analysis/ScopInfo.cpp

Modified: polly/trunk/lib/Analysis/ScopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopInfo.cpp?rev=303405&r1=303404&r2=303405&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopInfo.cpp (original)
+++ polly/trunk/lib/Analysis/ScopInfo.cpp Thu May 18 23:01:52 2017
@@ -94,11 +94,12 @@ static int const MaxDisjunctsInDomain =
 // number of disjunct when adding non-convex sets to the context.
 static int const MaxDisjunctsInContext = 4;
 
-static cl::opt<int> OptComputeOut(
-    "polly-analysis-computeout",
-    cl::desc("Bound the dependence analysis by a maximal amount of "
-             "computational steps (0 means no bound)"),
-    cl::Hidden, cl::init(1000000), cl::ZeroOrMore, cl::cat(PollyCategory));
+static cl::opt<int>
+    OptComputeOut("polly-analysis-computeout",
+                  cl::desc("Bound the scop analysis by a maximal amount of "
+                           "computational steps (0 means no bound)"),
+                  cl::Hidden, cl::init(1000000), cl::ZeroOrMore,
+                  cl::cat(PollyCategory));
 
 static cl::opt<bool> PollyRemarksMinimal(
     "polly-remarks-minimal",




More information about the llvm-commits mailing list