This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e88f7f6 Fix spurious warnings about unused private field new fa54202 Enable support for __float128 in Clang and enable it on perti [...]
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: bindings/python/clang/cindex.py | 1 + include/clang-c/Index.h | 1 + include/clang/AST/ASTContext.h | 9 +- include/clang/AST/BuiltinTypes.def | 3 + include/clang/AST/Type.h | 2 +- include/clang/AST/TypeLoc.h | 2 +- include/clang/Basic/DiagnosticSemaKinds.td | 6 +- include/clang/Basic/Specifiers.h | 1 + include/clang/Basic/TargetInfo.h | 19 +++- include/clang/Basic/TokenKinds.def | 1 + include/clang/Driver/Options.td | 4 + include/clang/Lex/LiteralSupport.h | 1 + include/clang/Sema/DeclSpec.h | 1 + include/clang/Serialization/ASTBitCodes.h | 2 + lib/AST/ASTContext.cpp | 32 +++--- lib/AST/ItaniumMangle.cpp | 8 +- lib/AST/MicrosoftMangle.cpp | 1 + lib/AST/NSAPI.cpp | 1 + lib/AST/StmtPrinter.cpp | 1 + lib/AST/Type.cpp | 8 +- lib/AST/TypeLoc.cpp | 1 + lib/Analysis/PrintfFormatString.cpp | 1 + lib/Basic/TargetInfo.cpp | 5 + lib/Basic/Targets.cpp | 27 ++++- lib/CodeGen/CGDebugInfo.cpp | 6 ++ lib/CodeGen/CGExprScalar.cpp | 14 ++- lib/CodeGen/CodeGenTypes.cpp | 1 + lib/CodeGen/ItaniumCXXABI.cpp | 5 +- lib/Format/FormatToken.cpp | 1 + lib/Index/USRGeneration.cpp | 2 + lib/Lex/LiteralSupport.cpp | 13 ++- 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 | 69 ++++++++++++- lib/Sema/SemaExprCXX.cpp | 6 ++ lib/Sema/SemaLookup.cpp | 7 -- lib/Sema/SemaOverload.cpp | 30 ++++-- lib/Sema/SemaTemplateVariadic.cpp | 1 + lib/Sema/SemaType.cpp | 16 +-- lib/Serialization/ASTCommon.cpp | 3 + lib/Serialization/ASTReader.cpp | 3 + test/CodeGenCXX/float128-declarations.cpp | 138 ++++++++++++++++++++++++++ test/Preprocessor/init.c | 3 + test/Sema/128bitfloat.cpp | 27 +++-- test/Sema/attr-mode.c | 2 +- test/Sema/float128-ld-incompatibility.cpp | 36 +++++++ test/SemaCXX/deleted-operator.cpp | 2 +- test/SemaCXX/overloaded-builtin-operators.cpp | 2 +- tools/libclang/CXType.cpp | 2 + 53 files changed, 462 insertions(+), 82 deletions(-) create mode 100644 test/CodeGenCXX/float128-declarations.cpp create mode 100644 test/Sema/float128-ld-incompatibility.cpp