aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-04-27 22:14:13 +0000
committerChad Rosier <mcrosier@apple.com>2012-04-27 22:14:13 +0000
commit0eed2cbba09af1ab089f5b1dd9dd34be87fe0d9a (patch)
tree9dac1f3e39793d6f3fb09594a61b5eac4ee7a85f
parentbd78cfa0480df14a627b536b628532070b6632c9 (diff)
Bump up the MaxDepth in the BalancedDelimiterTracker.
The Avida Project (http://avida.devosoft.org) exceeds the 256 limit. rdar://11289131 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155737 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Parse/Parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Parse/Parser.h b/include/clang/Parse/Parser.h
index 9d9a666c9c..6404c9fbd4 100644
--- a/include/clang/Parse/Parser.h
+++ b/include/clang/Parse/Parser.h
@@ -451,7 +451,7 @@ private:
}
}
- enum { MaxDepth = 256 };
+ enum { MaxDepth = 512 };
bool diagnoseOverflow();
bool diagnoseMissingClose();