This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 39d91bde1e [Hexagon] Clang side of r327302 in LLVM new f4ca1ac809 Reland "[Attr] Fix parameter indexing for several attributes"
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/Attr.h | 122 +++++++++++++++++ include/clang/Basic/Attr.td | 44 ++++-- lib/AST/ExprConstant.cpp | 10 +- lib/CodeGen/CGCall.cpp | 9 +- lib/Sema/SemaChecking.cpp | 37 +++-- lib/Sema/SemaDecl.cpp | 2 +- lib/Sema/SemaDeclAttr.cpp | 151 +++++++++------------ lib/Sema/SemaTemplateInstantiateDecl.cpp | 3 +- lib/StaticAnalyzer/Checkers/MallocChecker.cpp | 11 +- .../Checkers/NonNullParamChecker.cpp | 7 +- test/CodeGenCXX/alloc-size.cpp | 18 +++ test/Frontend/ast-attr.cpp | 5 + test/Misc/ast-dump-attr.cpp | 4 +- test/Sema/attr-ownership.cpp | 7 + test/Sema/attr-print.cpp | 63 +++++++++ test/Sema/error-type-safety.cpp | 39 +++++- utils/TableGen/ClangAttrEmitter.cpp | 39 +++++- 17 files changed, 418 insertions(+), 153 deletions(-) create mode 100644 test/Frontend/ast-attr.cpp create mode 100644 test/Sema/attr-ownership.cpp