diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-01 00:12:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-01 00:12:58 +0000 |
commit | bab4a90cb9a987176a4f378f50412de086182195 (patch) | |
tree | eb841a55052cebb737dcadff7dbe42b5ec5b78f1 /lib/Analysis/DataStructure/ComputeClosure.cpp | |
parent | aedcb728050fd002930014088b7a63c6398297c8 (diff) |
Increase limit for perimeter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2081 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/ComputeClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/ComputeClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/ComputeClosure.cpp b/lib/Analysis/DataStructure/ComputeClosure.cpp index 2036cfd756..493b282b8f 100644 --- a/lib/Analysis/DataStructure/ComputeClosure.cpp +++ b/lib/Analysis/DataStructure/ComputeClosure.cpp @@ -98,7 +98,7 @@ void FunctionDSGraph::computeClosure(const DataStructure &DS) { CallDSNode *CN = *NI; Function *F = CN->getCall()->getCalledFunction(); - if (NumInlines++ == 20) { // CUTE hack huh? + if (NumInlines++ == 40) { // CUTE hack huh? cerr << "Infinite (?) recursion halted\n"; return; } |