Increase limit for perimeter
authorChris Lattner <sabre@nondot.org>
Mon, 1 Apr 2002 00:12:58 +0000 (00:12 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 1 Apr 2002 00:12:58 +0000 (00:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2081 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/ComputeClosure.cpp

index 2036cfd7561e4c21af286db4259f086b367aded4..493b282b8f6ca95ed1a179b1a0d1a3b4dc008835 100644 (file)
@@ -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;
     }