This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 1d201d005b [CodeComplete] Add a bit more whitespace to completed patterns new 6767591efe [OpenCL] Declare builtin functions using TableGen
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/CMakeLists.txt | 6 + include/clang/Basic/LangOptions.def | 1 + include/clang/Basic/OpenCLBuiltins.td | 296 +++++++++++++++++++++++++ include/clang/Driver/CC1Options.td | 4 +- lib/Frontend/CompilerInvocation.cpp | 3 +- lib/Sema/SemaLookup.cpp | 84 +++++++ test/SemaOpenCL/fdeclare-opencl-builtins.cl | 24 ++ utils/TableGen/CMakeLists.txt | 1 + utils/TableGen/ClangOpenCLBuiltinEmitter.cpp | 318 +++++++++++++++++++++++++++ utils/TableGen/TableGen.cpp | 6 + utils/TableGen/TableGenBackends.h | 3 + 11 files changed, 744 insertions(+), 2 deletions(-) create mode 100644 include/clang/Basic/OpenCLBuiltins.td create mode 100644 test/SemaOpenCL/fdeclare-opencl-builtins.cl create mode 100644 utils/TableGen/ClangOpenCLBuiltinEmitter.cpp