This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from a167502bf9 [Analyzer] Do not segfault on unexpected call_once implementation new 9ee4a4e444 [Modules TS] Module ownership semantics for redeclarations. new a3aaa66c47 Fix typos in documentation
The 2 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: docs/InternalsManual.rst | 4 +- include/clang/AST/Decl.h | 10 ++- include/clang/AST/DeclBase.h | 4 + include/clang/Basic/DiagnosticSemaKinds.td | 3 + include/clang/Sema/Lookup.h | 25 ++++++- include/clang/Sema/Sema.h | 38 +++++++--- lib/AST/Decl.cpp | 16 +++- lib/AST/DeclBase.cpp | 5 +- lib/AST/DeclCXX.cpp | 2 +- lib/Sema/SemaDecl.cpp | 85 ++++++++++++++++++---- lib/Sema/SemaDeclCXX.cpp | 31 +++++--- lib/Sema/SemaDeclObjC.cpp | 28 ++++--- lib/Sema/SemaExprMember.cpp | 3 +- lib/Sema/SemaLookup.cpp | 30 +++++++- lib/Sema/SemaOpenMP.cpp | 2 +- lib/Sema/SemaTemplate.cpp | 13 ++-- lib/Sema/SemaTemplateInstantiateDecl.cpp | 17 +++-- .../basic/basic.def.odr/p6/global-vs-module.cpp | 55 ++++++++++++++ .../basic/basic.def.odr/p6/module-vs-global.cpp | 19 +++++ .../basic/basic.def.odr/p6/module-vs-module.cpp | 44 +++++++++++ test/SemaCXX/modules-ts.cppm | 2 +- 21 files changed, 355 insertions(+), 81 deletions(-) create mode 100644 test/CXX/modules-ts/basic/basic.def.odr/p6/global-vs-module.cpp create mode 100644 test/CXX/modules-ts/basic/basic.def.odr/p6/module-vs-global.cpp create mode 100644 test/CXX/modules-ts/basic/basic.def.odr/p6/module-vs-module.cpp