Author: mcrosier Date: Fri Apr 27 17:14:13 2012 New Revision: 155737 URL: http://llvm.org/viewvc/llvm-project?rev=155737&view=rev Log: Bump up the MaxDepth in the BalancedDelimiterTracker.
The Avida Project (http://avida.devosoft.org) exceeds the 256 limit. rdar://11289131 Modified: cfe/trunk/include/clang/Parse/Parser.h Modified: cfe/trunk/include/clang/Parse/Parser.h URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/Parser.h?rev=155737&r1=155736&r2=155737&view=diff ============================================================================== --- cfe/trunk/include/clang/Parse/Parser.h (original) +++ cfe/trunk/include/clang/Parse/Parser.h Fri Apr 27 17:14:13 2012 @@ -451,7 +451,7 @@ } } - enum { MaxDepth = 256 }; + enum { MaxDepth = 512 }; bool diagnoseOverflow(); bool diagnoseMissingClose(); _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
