diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-05-14 04:00:59 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-05-14 04:00:59 +0000 |
commit | 31d5184dc5e713fb34c7e29eeee51e66a8652977 (patch) | |
tree | 6aa10fcae7042e4df383a263fc39247a37a6ecd9 /clang/lib/Basic/IdentifierTable.cpp | |
parent | dbbc5236395171104128620dd4aed4084ba92c68 (diff) | |
download | bcm5719-llvm-31d5184dc5e713fb34c7e29eeee51e66a8652977.tar.gz bcm5719-llvm-31d5184dc5e713fb34c7e29eeee51e66a8652977.zip |
Generalize future keyword compat diagnostics.
This, in preparation for the introduction of more new keywords in the
implementation of the C++ language, generalizes the support for future keyword
compat diagnostics (e.g., diag::warn_cxx11_keyword) by extending the
applicability of the relevant property in IdentifierTable with appropriate
renaming.
Patch by Hubert Tong!
llvm-svn: 237332
Diffstat (limited to 'clang/lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | clang/lib/Basic/IdentifierTable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Basic/IdentifierTable.cpp b/clang/lib/Basic/IdentifierTable.cpp index 0a27c6a889d..629b236eee4 100644 --- a/clang/lib/Basic/IdentifierTable.cpp +++ b/clang/lib/Basic/IdentifierTable.cpp @@ -35,7 +35,7 @@ IdentifierInfo::IdentifierInfo() { HasMacro = false; HadMacro = false; IsExtension = false; - IsCXX11CompatKeyword = false; + IsFutureCompatKeyword = false; IsPoisoned = false; IsCPPOperatorKeyword = false; NeedsHandleIdentifier = false; @@ -170,7 +170,7 @@ static void AddKeyword(StringRef Keyword, IdentifierInfo &Info = Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode); Info.setIsExtensionToken(AddResult == KS_Extension); - Info.setIsCXX11CompatKeyword(AddResult == KS_Future); + Info.setIsFutureCompatKeyword(AddResult == KS_Future); } /// AddCXXOperatorKeyword - Register a C++ operator keyword alternative |