[ScopInfo] Fix typo in documentation
authorTobias Grosser <tobias@grosser.es>
Fri, 19 May 2017 04:01:52 +0000 (04:01 +0000)
committerTobias Grosser <tobias@grosser.es>
Fri, 19 May 2017 04:01:52 +0000 (04:01 +0000)
llvm-svn: 303405

polly/lib/Analysis/ScopInfo.cpp

index 4ed3302..3cbb65b 100644 (file)
@@ -94,11 +94,12 @@ static int const MaxDisjunctsInDomain = 20;
 // 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",