This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 5257649 Add support for musl-libc on ARM Linux. new 3c1c202 Implement C++17 P0386R2, inline variables. (The 'inline' spec [...]
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/Decl.h | 27 +++++- include/clang/Basic/DiagnosticSemaKinds.td | 13 ++- include/clang/Sema/SemaInternal.h | 9 +- lib/AST/ASTContext.cpp | 8 +- lib/AST/ASTDumper.cpp | 4 + lib/AST/Decl.cpp | 30 +++---- lib/CodeGen/CodeGenModule.cpp | 6 ++ lib/CodeGen/ItaniumCXXABI.cpp | 20 ++++- lib/Sema/Sema.cpp | 17 ++-- lib/Sema/SemaDecl.cpp | 97 ++++++++++++++++++---- lib/Sema/SemaDeclCXX.cpp | 3 + lib/Sema/SemaDeclObjC.cpp | 3 + lib/Sema/SemaTemplateInstantiate.cpp | 3 +- lib/Sema/SemaTemplateInstantiateDecl.cpp | 29 +++++-- lib/Serialization/ASTReaderDecl.cpp | 2 + lib/Serialization/ASTWriterDecl.cpp | 5 ++ test/CXX/basic/basic.def/p2.cpp | 8 ++ test/CXX/basic/basic.def/p4.cpp | 6 ++ .../class/class.static/class.static.data/p2.cpp | 7 ++ .../class/class.static/class.static.data/p3.cpp | 15 +++- test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/p1.cpp | 29 ++++++- test/CXX/dcl.dcl/dcl.spec/dcl.inline/p1.cpp | 8 ++ test/CXX/dcl.dcl/dcl.spec/dcl.inline/p5.cpp | 15 ++++ test/CXX/temp/temp.spec/temp.inst/p1.cpp | 10 +++ test/CodeGenCXX/cxx1z-inline-variables.cpp | 63 ++++++++++++++ test/Sema/inline.c | 2 +- www/cxx_status.html | 2 +- 27 files changed, 371 insertions(+), 70 deletions(-) create mode 100644 test/CXX/basic/basic.def/p2.cpp create mode 100644 test/CXX/basic/basic.def/p4.cpp create mode 100644 test/CXX/class/class.static/class.static.data/p2.cpp create mode 100644 test/CXX/dcl.dcl/dcl.spec/dcl.inline/p1.cpp create mode 100644 test/CXX/dcl.dcl/dcl.spec/dcl.inline/p5.cpp create mode 100644 test/CodeGenCXX/cxx1z-inline-variables.cpp