This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 62fdde3717 Fix templated type alias completion when using global comple [...] new b9fefa5ec7 Add _Float16 as a C/C++ source language 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-c/Index.h | 3 +- include/clang/AST/ASTContext.h | 1 + include/clang/AST/BuiltinTypes.def | 3 + include/clang/Basic/Specifiers.h | 1 + include/clang/Basic/TokenKinds.def | 3 + include/clang/Lex/LiteralSupport.h | 1 + include/clang/Sema/DeclSpec.h | 1 + include/clang/Serialization/ASTBitCodes.h | 2 + lib/AST/ASTContext.cpp | 14 +- lib/AST/ItaniumMangle.cpp | 4 + lib/AST/MicrosoftMangle.cpp | 1 + lib/AST/NSAPI.cpp | 1 + lib/AST/StmtPrinter.cpp | 1 + lib/AST/Type.cpp | 2 + lib/AST/TypeLoc.cpp | 1 + lib/Analysis/PrintfFormatString.cpp | 1 + lib/CodeGen/CGDebugInfo.cpp | 1 + lib/CodeGen/CGExprScalar.cpp | 2 +- lib/CodeGen/CodeGenTypes.cpp | 6 + lib/CodeGen/ItaniumCXXABI.cpp | 1 + lib/Format/FormatToken.cpp | 1 + lib/Index/USRGeneration.cpp | 1 + lib/Lex/LiteralSupport.cpp | 9 + lib/Parse/ParseDecl.cpp | 7 + lib/Parse/ParseExpr.cpp | 1 + lib/Parse/ParseExprCXX.cpp | 3 + lib/Parse/ParseTentative.cpp | 3 + lib/Sema/DeclSpec.cpp | 2 + lib/Sema/SemaDecl.cpp | 1 + lib/Sema/SemaExpr.cpp | 8 +- lib/Sema/SemaTemplateVariadic.cpp | 1 + lib/Sema/SemaType.cpp | 5 +- lib/Serialization/ASTCommon.cpp | 3 + lib/Serialization/ASTReader.cpp | 3 + test/CodeGenCXX/float16-declarations.cpp | 156 ++++++++++++++ test/Frontend/float16.cpp | 326 ++++++++++++++++++++++++++++++ test/Lexer/half-literal.cpp | 3 + tools/libclang/CXType.cpp | 4 +- 38 files changed, 578 insertions(+), 9 deletions(-) create mode 100644 test/CodeGenCXX/float16-declarations.cpp create mode 100644 test/Frontend/float16.cpp