This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 692350b332 [analyzer][NFC] Fix inconsistent references to checkers as "checks" new 016e799245 [CFG] Add dumps for CFGElement and CFGElementRef new 2b3c18bb49 [Clang][CodeGen] support alias attribute w/ gnu_inline new 2eb4788e8c Improve code generation for thread_local variables:
The 3 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/Analysis/CFG.h | 19 ++++- include/clang/Basic/Linkage.h | 6 ++ lib/AST/Decl.cpp | 3 +- lib/Analysis/CFG.cpp | 98 +++++++++++++++------- lib/CodeGen/CGCXXABI.h | 2 +- lib/CodeGen/CGExpr.cpp | 2 +- lib/CodeGen/ItaniumCXXABI.cpp | 85 ++++++++++++++++--- lib/CodeGen/MicrosoftCXXABI.cpp | 4 +- test/CodeGen/alias.c | 5 ++ test/CodeGenCXX/cxx11-thread-local.cpp | 31 ++++--- test/CodeGenCXX/cxx2a-thread-local-constinit.cpp | 47 +++++++++++ test/CodeGenCXX/tls-init-funcs.cpp | 6 +- .../windows-on-arm-itanium-thread-local.cpp} | 7 +- test/OpenMP/parallel_copyin_codegen.cpp | 37 +++----- 14 files changed, 259 insertions(+), 93 deletions(-) create mode 100644 test/CodeGenCXX/cxx2a-thread-local-constinit.cpp rename test/{CodeGen/windows-on-arm-itanium-thread-local.c => CodeGenCXX/windows-o [...]