diff options
| author | Tobias Grosser <tobias@grosser.es> | 2017-05-19 04:01:52 +0000 |
|---|---|---|
| committer | Tobias Grosser <tobias@grosser.es> | 2017-05-19 04:01:52 +0000 |
| commit | 977158488e532bb26d94612fa116c8362202ee4e (patch) | |
| tree | 57eb35a00652eb9ec98fd1851f1526e90344a076 /polly/lib/Analysis/ScopInfo.cpp | |
| parent | 45e9fd181003a01f52f312edbb4d4b0c54d4f608 (diff) | |
| download | bcm5719-llvm-977158488e532bb26d94612fa116c8362202ee4e.tar.gz bcm5719-llvm-977158488e532bb26d94612fa116c8362202ee4e.zip | |
[ScopInfo] Fix typo in documentation
llvm-svn: 303405
Diffstat (limited to 'polly/lib/Analysis/ScopInfo.cpp')
| -rw-r--r-- | polly/lib/Analysis/ScopInfo.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/polly/lib/Analysis/ScopInfo.cpp b/polly/lib/Analysis/ScopInfo.cpp index 4ed3302b563..3cbb65bf946 100644 --- a/polly/lib/Analysis/ScopInfo.cpp +++ b/polly/lib/Analysis/ScopInfo.cpp @@ -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", |

