This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 8d336be Add the hasDynamicExceptionSpec() AST matcher to match functi [...] new 1c20b81 [OpenCL] Add supported OpenCL extensions to target info.
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 | 4 ++ include/clang/Basic/LangOptions.h | 12 ----- include/clang/Basic/OpenCLExtensions.def | 76 +++++++++++++++++++++------- include/clang/Basic/OpenCLOptions.h | 68 +++++++++++++++++++++++++ include/clang/Basic/TargetInfo.h | 13 +++++ include/clang/Basic/TargetOptions.h | 4 ++ lib/Basic/Targets.cpp | 48 ++++++++++++++---- lib/Frontend/InitPreprocessor.cpp | 9 ++++ lib/Parse/ParsePragma.cpp | 14 ++++- lib/Sema/Sema.cpp | 8 ++- test/CodeGenOpenCL/builtins-r600.cl | 2 +- test/CodeGenOpenCL/fpmath.cl | 2 +- test/CodeGenOpenCL/half.cl | 2 +- test/Lexer/opencl-half-literal.cl | 2 +- test/Misc/languageOptsOpenCL.cl | 2 +- test/PCH/opencl-extensions.cl | 4 +- test/Parser/opencl-astype.cl | 2 +- test/Parser/opencl-atomics-cl20.cl | 26 +++++----- test/Parser/opencl-pragma.cl | 2 +- test/Parser/opencl-storage-class.cl | 2 +- test/SemaOpenCL/extension-fp64-cl1.1.cl | 19 ------- test/SemaOpenCL/extension-fp64.cl | 19 ------- test/SemaOpenCL/extensions.cl | 36 +++++++++++++ test/SemaOpenCL/half.cl | 2 +- test/SemaOpenCL/invalid-kernel-parameters.cl | 2 +- test/SemaOpenCL/invalid-logical-ops-1.2.cl | 3 +- test/SemaOpenCL/optional-core-fp64-cl1.2.cl | 20 -------- test/SemaOpenCL/optional-core-fp64-cl2.0.cl | 20 -------- 28 files changed, 277 insertions(+), 146 deletions(-) create mode 100644 include/clang/Basic/OpenCLOptions.h delete mode 100644 test/SemaOpenCL/extension-fp64-cl1.1.cl delete mode 100644 test/SemaOpenCL/extension-fp64.cl create mode 100644 test/SemaOpenCL/extensions.cl delete mode 100644 test/SemaOpenCL/optional-core-fp64-cl1.2.cl delete mode 100644 test/SemaOpenCL/optional-core-fp64-cl2.0.cl