diff options
author | Richard Trieu <rtrieu@google.com> | 2019-07-11 02:54:15 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2019-07-11 02:54:15 +0000 |
commit | 9066e5f832bf5c9a606164416def0ee763a1330a (patch) | |
tree | bdffadb259176bc4c4e0e15134da3820ca52bb11 | |
parent | 627095ec5be18e9a628f2aad5f057425ffbc2505 (diff) | |
download | bcm5719-llvm-9066e5f832bf5c9a606164416def0ee763a1330a.tar.gz bcm5719-llvm-9066e5f832bf5c9a606164416def0ee763a1330a.zip |
Increase the number of parser diagnostics.
The reserved range for parser diagnostics is getting close to being filled,
so increase the space for them.
llvm-svn: 365727
-rw-r--r-- | clang/include/clang/Basic/DiagnosticIDs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Basic/DiagnosticIDs.h b/clang/include/clang/Basic/DiagnosticIDs.h index 8ee9a970b1a..fccd534be35 100644 --- a/clang/include/clang/Basic/DiagnosticIDs.h +++ b/clang/include/clang/Basic/DiagnosticIDs.h @@ -32,7 +32,7 @@ namespace clang { DIAG_SIZE_FRONTEND = 150, DIAG_SIZE_SERIALIZATION = 120, DIAG_SIZE_LEX = 400, - DIAG_SIZE_PARSE = 500, + DIAG_SIZE_PARSE = 600, DIAG_SIZE_AST = 200, DIAG_SIZE_COMMENT = 100, DIAG_SIZE_CROSSTU = 100, |