This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from eea8887a7d Add bitrig removal to release notes new 563803fe16 [OpenCL] Fix access qualifiers metadata for kernel arguments [...] new f8d10d4842 Revert r309106 "Recommit r308327 2nd time: Add a warning for [...] new 32a4fb8a15 Clang and LLVM search for different versions of libxml2, res [...] new a10a6062c4 Convert mac file format to unix new ba7a7c6997 Add branch weights to branches for static initializers. new efcdbdc21d Headers: improve ARM EHABI coverage of unwind.h new cf6fe9b619 [Coverage] NFC: Save a pair of calls to get{Start,End} new 5022d62c16 [Coverage] NFC: Simplify sanity checks with a SpellingRange utility
The 8 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: CMakeLists.txt | 1 + include/clang/Basic/DiagnosticGroups.td | 3 +- include/clang/Basic/DiagnosticSemaKinds.td | 10 -- include/clang/Lex/PPCallbacks.h | 6 - include/clang/Lex/VariadicMacroSupport.h | 112 +++++++++--------- include/clang/Sema/Sema.h | 36 +----- include/clang/Serialization/ASTReader.h | 1 - lib/CodeGen/CGDeclCXX.cpp | 41 ++++++- lib/CodeGen/CodeGenFunction.cpp | 5 +- lib/CodeGen/CodeGenFunction.h | 8 ++ lib/CodeGen/CoverageMappingGen.cpp | 70 ++++++++---- lib/CodeGen/ItaniumCXXABI.cpp | 5 +- lib/CodeGen/MicrosoftCXXABI.cpp | 10 +- lib/Headers/unwind.h | 75 +++++++++--- lib/Parse/ParsePragma.cpp | 9 +- lib/Sema/Sema.cpp | 54 --------- lib/Sema/SemaAttr.cpp | 55 +-------- lib/Serialization/ASTReader.cpp | 6 +- lib/Serialization/ASTWriter.cpp | 1 - .../microsoft-abi-static-initializers.cpp | 2 +- .../microsoft-abi-thread-safe-statics.cpp | 9 +- test/CodeGenCXX/static-init-wasm.cpp | 4 +- .../static-initializer-branch-weights.cpp | 126 +++++++++++++++++++++ test/CodeGenOpenCL/kernel-arg-info.cl | 22 ++++ test/OpenMP/declare_simd_messages.cpp | 2 +- test/PCH/pragma-pack.c | 30 ++--- test/PCH/suspicious-pragma-pack.c | 8 -- test/Parser/pragma-options.c | 2 +- test/Parser/pragma-options.cpp | 2 +- test/Parser/pragma-pack.c | 2 +- test/Sema/Inputs/pragma-pack1.h | 27 ----- test/Sema/Inputs/pragma-pack2.h | 8 -- test/Sema/pragma-pack.c | 5 - test/Sema/suspicious-pragma-pack.c | 49 -------- test/SemaObjC/Inputs/empty.h | 1 - test/SemaObjC/suspicious-pragma-pack.m | 6 - 36 files changed, 409 insertions(+), 404 deletions(-) create mode 100644 test/CodeGenCXX/static-initializer-branch-weights.cpp delete mode 100644 test/PCH/suspicious-pragma-pack.c delete mode 100644 test/Sema/Inputs/pragma-pack1.h delete mode 100644 test/Sema/Inputs/pragma-pack2.h delete mode 100644 test/Sema/suspicious-pragma-pack.c delete mode 100644 test/SemaObjC/Inputs/empty.h delete mode 100644 test/SemaObjC/suspicious-pragma-pack.m