r304411 - Increase the limit for the number of DiagnosticLexKinds.td diags.
Yaron Keren via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 1 05:46:59 PDT 2017
Author: yrnkrn
Date: Thu Jun 1 07:46:59 2017
New Revision: 304411
URL: http://llvm.org/viewvc/llvm-project?rev=304411&view=rev
Log:
Increase the limit for the number of DiagnosticLexKinds.td diags.
300 was reached in r304190, 400 should be enough for a while.
Modified:
cfe/trunk/include/clang/Basic/DiagnosticIDs.h
Modified: cfe/trunk/include/clang/Basic/DiagnosticIDs.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticIDs.h?rev=304411&r1=304410&r2=304411&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticIDs.h (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticIDs.h Thu Jun 1 07:46:59 2017
@@ -32,7 +32,7 @@ namespace clang {
DIAG_START_FRONTEND = DIAG_START_DRIVER + 200,
DIAG_START_SERIALIZATION = DIAG_START_FRONTEND + 100,
DIAG_START_LEX = DIAG_START_SERIALIZATION + 120,
- DIAG_START_PARSE = DIAG_START_LEX + 300,
+ DIAG_START_PARSE = DIAG_START_LEX + 400,
DIAG_START_AST = DIAG_START_PARSE + 500,
DIAG_START_COMMENT = DIAG_START_AST + 110,
DIAG_START_SEMA = DIAG_START_COMMENT + 100,
More information about the cfe-commits
mailing list