This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 2e86b2ecf1 Support: Have directory_iterator::status() return FindFirstF [...] new 6bbe311027 [Modules TS] Module ownership semantics for redeclarations. new 3f972b5e4a [Modules TS] Diagnose attempts to enter module implementatio [...]
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: include/clang/AST/Decl.h | 10 ++- include/clang/AST/DeclBase.h | 7 ++ include/clang/Basic/DiagnosticSemaKinds.td | 6 ++ include/clang/Sema/Lookup.h | 25 +++++- include/clang/Sema/Sema.h | 48 ++++++++--- lib/AST/Decl.cpp | 18 +++- lib/AST/DeclBase.cpp | 5 +- lib/AST/DeclCXX.cpp | 2 +- lib/Parse/Parser.cpp | 4 +- lib/Sema/SemaDecl.cpp | 95 +++++++++++++++++----- lib/Sema/SemaDeclCXX.cpp | 30 ++++--- 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 ++++++++++ .../basic/basic.link/module-declaration.cpp | 11 +-- .../dcl.dcl/dcl.module/dcl.module.import/p1.cpp | 5 +- .../dcl.dcl/dcl.module/dcl.module.interface/p1.cpp | 11 +-- test/CXX/modules-ts/dcl.dcl/dcl.module/p2.cpp | 6 ++ test/Modules/anon-linkage.cpp | 12 +++ test/SemaCXX/modules-ts.cppm | 2 +- 26 files changed, 409 insertions(+), 99 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 create mode 100644 test/CXX/modules-ts/dcl.dcl/dcl.module/p2.cpp create mode 100644 test/Modules/anon-linkage.cpp