This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 8a3afc3750 [Sema] Push and Pop Expression Evaluation Context Records at [...] new 6f7b650ee8 [Sema/Attribute] Check for noderef 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/Basic/Attr.td | 5 + include/clang/Basic/AttrDocs.td | 57 ++++++++ include/clang/Basic/DiagnosticGroups.td | 2 + include/clang/Basic/DiagnosticSemaKinds.td | 9 ++ include/clang/Sema/Sema.h | 16 +++ lib/AST/TypePrinter.cpp | 3 + lib/Sema/SemaExpr.cpp | 117 +++++++++++++++- lib/Sema/SemaExprMember.cpp | 28 +++- lib/Sema/SemaInit.cpp | 13 ++ lib/Sema/SemaType.cpp | 48 ++++++- test/Frontend/noderef.c | 209 +++++++++++++++++++++++++++++ test/Frontend/noderef.cpp | 102 ++++++++++++++ test/Frontend/noderef_on_non_pointers.m | 11 ++ test/Frontend/noderef_templates.cpp | 15 +++ 14 files changed, 628 insertions(+), 7 deletions(-) create mode 100644 test/Frontend/noderef.c create mode 100644 test/Frontend/noderef.cpp create mode 100644 test/Frontend/noderef_on_non_pointers.m create mode 100644 test/Frontend/noderef_templates.cpp