This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 8485ca8 The test added in r275267 does not work on read-only checkout [...] new df2ccf1 Removing more :option: tags that we do not have corresponding [...] new bb52c5f Diagnose taking address and reference binding of packed members
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/ClangPlugins.rst | 16 +-- include/clang/Basic/DiagnosticSemaKinds.td | 5 + include/clang/Sema/Sema.h | 49 ++++++++ lib/Sema/SemaCast.cpp | 3 + lib/Sema/SemaChecking.cpp | 67 +++++++++++ lib/Sema/SemaExpr.cpp | 6 +- lib/Sema/SemaInit.cpp | 13 +++ test/Sema/address-packed-member-memops.c | 26 +++++ test/Sema/address-packed.c | 160 ++++++++++++++++++++++++++ test/SemaCXX/address-packed-member-memops.cpp | 28 +++++ test/SemaCXX/address-packed.cpp | 118 +++++++++++++++++++ 11 files changed, 482 insertions(+), 9 deletions(-) create mode 100644 test/Sema/address-packed-member-memops.c create mode 100644 test/Sema/address-packed.c create mode 100644 test/SemaCXX/address-packed-member-memops.cpp create mode 100644 test/SemaCXX/address-packed.cpp