This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from b206e2e [analyzer] Fix crash in MallocChecker. new 30d9d89 [OpenCL] Allow disabling types and declarations associated wi [...]
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/DiagnosticParseKinds.td | 6 +- include/clang/Basic/DiagnosticSemaKinds.td | 6 +- include/clang/Basic/OpenCLImageTypes.def | 98 +++++++++--------- include/clang/Basic/OpenCLOptions.h | 111 +++++++++++++------- include/clang/Basic/TargetInfo.h | 2 +- include/clang/Sema/Overload.h | 5 +- include/clang/Sema/Sema.h | 67 ++++++++++++ include/clang/Serialization/ASTBitCodes.h | 28 +++-- include/clang/Serialization/ASTReader.h | 8 +- include/clang/Serialization/ASTWriter.h | 2 + lib/Basic/Targets.cpp | 54 +++++----- lib/Frontend/InitPreprocessor.cpp | 2 +- lib/Headers/opencl-c.h | 4 + lib/Parse/ParsePragma.cpp | 97 +++++++++-------- lib/Parse/Parser.cpp | 2 + lib/Sema/DeclSpec.cpp | 2 +- lib/Sema/Sema.cpp | 155 ++++++++++++++++++++++++---- lib/Sema/SemaCast.cpp | 3 +- lib/Sema/SemaDecl.cpp | 9 +- lib/Sema/SemaExpr.cpp | 13 ++- lib/Sema/SemaOverload.cpp | 16 +++ lib/Sema/SemaType.cpp | 57 ++-------- lib/Serialization/ASTReader.cpp | 45 ++++++-- lib/Serialization/ASTWriter.cpp | 43 +++++++- test/CodeGenOpenCL/extension-begin.cl | 25 +++++ test/Parser/opencl-atomics-cl20.cl | 19 ++-- test/Parser/opencl-pragma.cl | 4 +- test/SemaOpenCL/extension-begin.cl | 56 ++++++++++ test/SemaOpenCL/extensions.cl | 2 - 29 files changed, 666 insertions(+), 275 deletions(-) create mode 100644 test/CodeGenOpenCL/extension-begin.cl create mode 100644 test/SemaOpenCL/extension-begin.cl