forked from OSchip/llvm-project
Increase the limit on parser diagnostics
We're really close to the limit $ grep -c DIAG tools/clang/include/clang/Basic/DiagnosticParseKinds.inc 598
This commit is contained in:
parent
9a547e7009
commit
b32ead41b1
|
@ -34,7 +34,7 @@ namespace clang {
|
|||
DIAG_SIZE_FRONTEND = 150,
|
||||
DIAG_SIZE_SERIALIZATION = 120,
|
||||
DIAG_SIZE_LEX = 400,
|
||||
DIAG_SIZE_PARSE = 600,
|
||||
DIAG_SIZE_PARSE = 700,
|
||||
DIAG_SIZE_AST = 250,
|
||||
DIAG_SIZE_COMMENT = 100,
|
||||
DIAG_SIZE_CROSSTU = 100,
|
||||
|
|
Loading…
Reference in New Issue