This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from a8bebbe Perform type-checking for a converted constant expression in [...] new aa365cb Add the alloc_size attribute to clang, attempt 2.
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 | 9 + include/clang/Basic/AttrDocs.td | 38 ++ include/clang/Basic/DiagnosticSemaKinds.td | 3 + lib/AST/ExprConstant.cpp | 616 +++++++++++++++++-------- lib/CodeGen/CGBlocks.cpp | 24 +- lib/CodeGen/CGCall.cpp | 8 + lib/CodeGen/CodeGenFunction.h | 4 +- lib/CodeGen/CodeGenModule.h | 14 + lib/Sema/SemaDeclAttr.cpp | 88 ++++ test/CodeGen/alloc-size.c | 352 ++++++++++++++ test/CodeGenCXX/alloc-size.cpp | 72 +++ test/CodeGenCXX/block-in-ctor-dtor.cpp | 2 - test/CodeGenCXX/global-init.cpp | 3 - test/CodeGenOpenCL/cl20-device-side-enqueue.cl | 24 +- test/Sema/alloc-size.c | 23 + test/SemaCXX/constant-expression-cxx11.cpp | 4 +- 16 files changed, 1078 insertions(+), 206 deletions(-) create mode 100644 test/CodeGen/alloc-size.c create mode 100644 test/CodeGenCXX/alloc-size.cpp create mode 100644 test/Sema/alloc-size.c