]> granicus.if.org Git - clang/commitdiff
Increase the limit for the number of DiagnosticLexKinds.td diags.
authorYaron Keren <yaron.keren@gmail.com>
Thu, 1 Jun 2017 12:46:59 +0000 (12:46 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Thu, 1 Jun 2017 12:46:59 +0000 (12:46 +0000)
300 was reached in r304190, 400 should be enough for a while.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@304411 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticIDs.h

index 7646e33d2366e364ccdf0e40dbfb3a62cae1f9df..479d1978c62d8c762708f7cd8799c9099c260220 100644 (file)
@@ -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,