This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 3c933618f3 [ShadowCallStack] fix the docs new 9067f8fb74 Implement P0482R2, support for char8_t type.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/AST/ASTContext.h | 1 + include/clang/AST/BuiltinTypes.def | 3 ++ include/clang/AST/Type.h | 1 + include/clang/Basic/DiagnosticSemaKinds.td | 10 +++++++ include/clang/Basic/LangOptions.def | 1 + include/clang/Basic/Specifiers.h | 1 + include/clang/Basic/TokenKinds.def | 4 +++ include/clang/Driver/Options.td | 4 +++ include/clang/Sema/DeclSpec.h | 1 + include/clang/Sema/Initialization.h | 6 ++++ include/clang/Serialization/ASTBitCodes.h | 3 ++ lib/AST/ASTContext.cpp | 6 ++++ lib/AST/ExprConstant.cpp | 1 + lib/AST/ItaniumMangle.cpp | 3 ++ lib/AST/MicrosoftMangle.cpp | 1 + lib/AST/NSAPI.cpp | 1 + lib/AST/Type.cpp | 10 +++++++ lib/AST/TypeLoc.cpp | 2 ++ lib/Analysis/PrintfFormatString.cpp | 1 + lib/Basic/IdentifierTable.cpp | 16 +++++----- lib/CodeGen/CGDebugInfo.cpp | 1 + lib/CodeGen/CodeGenTypes.cpp | 1 + lib/CodeGen/ItaniumCXXABI.cpp | 4 ++- lib/Driver/ToolChains/Clang.cpp | 3 ++ lib/Format/FormatToken.cpp | 1 + lib/Frontend/CompilerInvocation.cpp | 1 + lib/Frontend/InitPreprocessor.cpp | 6 ++++ lib/Index/USRGeneration.cpp | 2 ++ lib/Lex/PPExpressions.cpp | 2 +- lib/Parse/ParseDecl.cpp | 7 +++++ lib/Parse/ParseExpr.cpp | 1 + lib/Parse/ParseExprCXX.cpp | 3 ++ lib/Parse/ParseTentative.cpp | 3 ++ lib/Sema/DeclSpec.cpp | 6 +++- lib/Sema/SemaDecl.cpp | 3 ++ lib/Sema/SemaDeclCXX.cpp | 7 +++-- lib/Sema/SemaExpr.cpp | 4 +++ lib/Sema/SemaInit.cpp | 48 ++++++++++++++++++++++++++---- lib/Sema/SemaOverload.cpp | 2 ++ lib/Sema/SemaTemplate.cpp | 4 +-- lib/Sema/SemaTemplateVariadic.cpp | 1 + lib/Sema/SemaType.cpp | 5 ++++ lib/Serialization/ASTCommon.cpp | 3 ++ lib/Serialization/ASTReader.cpp | 3 ++ test/CodeGenCXX/char8_t.cpp | 8 +++++ test/Lexer/char8_t.cpp | 17 +++++++++++ test/Lexer/cxx-features.cpp | 7 +++++ test/SemaCXX/char8_t.cpp | 44 +++++++++++++++++++++++++++ 48 files changed, 254 insertions(+), 19 deletions(-) create mode 100644 test/CodeGenCXX/char8_t.cpp create mode 100644 test/Lexer/char8_t.cpp create mode 100644 test/SemaCXX/char8_t.cpp