This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from a7fae20461 [clang-tidy] Fail gracefully upon empty database fields new 31de5dab92 P0840R2: support for [[no_unique_address]] attribute
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 | 5 + include/clang/AST/DeclCXX.h | 10 +- include/clang/Basic/Attr.td | 20 ++- include/clang/Basic/AttrDocs.td | 26 +++ lib/AST/Decl.cpp | 33 ++++ lib/AST/DeclCXX.cpp | 22 ++- lib/AST/RecordLayoutBuilder.cpp | 126 ++++++++++----- lib/CodeGen/CGExpr.cpp | 15 ++ lib/CodeGen/CGExprAgg.cpp | 29 +++- lib/CodeGen/CGExprConstant.cpp | 26 ++- lib/CodeGen/CGOpenMPRuntime.cpp | 2 +- lib/CodeGen/CGRecordLayoutBuilder.cpp | 28 ++-- lib/CodeGen/CodeGenFunction.h | 9 +- lib/Parse/ParseDeclCXX.cpp | 1 + lib/Sema/SemaDeclAttr.cpp | 3 + test/CodeGenCXX/no-unique-address.cpp | 79 +++++++++ test/CodeGenCXX/tail-padding.cpp | 44 +++++ test/Layout/no-unique-address.cpp | 265 +++++++++++++++++++++++++++++++ test/SemaCXX/cxx2a-no-unique-address.cpp | 19 +++ utils/TableGen/ClangAttrEmitter.cpp | 38 +++-- www/cxx_status.html | 2 +- 21 files changed, 704 insertions(+), 98 deletions(-) create mode 100644 test/CodeGenCXX/no-unique-address.cpp create mode 100644 test/Layout/no-unique-address.cpp create mode 100644 test/SemaCXX/cxx2a-no-unique-address.cpp