diff options
author | Tobias Grosser <tobias@grosser.es> | 2014-03-18 18:51:04 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2014-03-18 18:51:04 +0000 |
commit | 72ceb7bc734eb02c7c67dc4553208c7ab1c5d60a (patch) | |
tree | 574f65d4a4a8ae455f7173b3389349fad623c587 | |
parent | 67f1524797bac2b2c28b3c125647349d73599e87 (diff) | |
download | bcm5719-llvm-72ceb7bc734eb02c7c67dc4553208c7ab1c5d60a.tar.gz bcm5719-llvm-72ceb7bc734eb02c7c67dc4553208c7ab1c5d60a.zip |
Dependences: Further reduce the allowed compile time
llvm.org/PR19081 reports that the polly dependence analysis causes some h264
compilation to hang. We adjust the compute out, to ensure we do not block on
expensive dependence calculations.
llvm-svn: 204168
-rw-r--r-- | polly/lib/Analysis/Dependences.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Analysis/Dependences.cpp b/polly/lib/Analysis/Dependences.cpp index 59c77049285..c2320e74fdf 100644 --- a/polly/lib/Analysis/Dependences.cpp +++ b/polly/lib/Analysis/Dependences.cpp @@ -42,7 +42,7 @@ static cl::opt<int> OptComputeOut("polly-dependences-computeout", cl::desc("Bound the dependence analysis by a maximal amount of " "computational steps"), - cl::Hidden, cl::init(100000), cl::ZeroOrMore, + cl::Hidden, cl::init(15000), cl::ZeroOrMore, cl::cat(PollyCategory)); static cl::opt<bool> |