This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0972dc7906 [NFC] fix trivial typos in comments new 9acbe6ca40 [OpenCL] Add '-cl-uniform-work-group-size' compile option new abe788081e [docs] Fix duplicate arguments for JoinedAndSeparate new 7b0e5e8bbb [docs] Improve help for OpenMP options, NFC. new 8599389ce5 [docs] Regenerate command line reference new aa66de1724 [OPENMP] Require valid SourceLocation in function call, NFC. new 2fe677a5fe [CUDA] Added missing functions. new cb290147ed [OpenMP] Limit reduction support for pragma 'distribute' whe [...] new ba49d05a74 [Sema] Fix some Clang-tidy modernize and Include What You Us [...] new 3d6fd95e0d Simplify setting dso_local. NFC. new 087a8a1a10 [Darwin] Add a test to check clang produces accelerator tables. new 747af81d64 Add a test to ensure we don't permit mutable access on tempo [...] new a3b0ba0879 [mips] Reland r310704
The 12 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: docs/ClangCommandLineReference.rst | 46 ++++-- include/clang/Driver/Options.td | 29 ++-- include/clang/Frontend/CodeGenOptions.def | 1 + include/clang/Sema/Scope.h | 37 +++-- include/clang/Sema/ScopeInfo.h | 173 +++++++++++---------- include/clang/Sema/Template.h | 105 ++++++++----- include/clang/Sema/TemplateDeduction.h | 54 ++++--- include/clang/Sema/TypoCorrection.h | 95 ++++++----- include/clang/Serialization/ASTReader.h | 33 ++-- lib/CodeGen/CGCall.cpp | 15 ++ lib/CodeGen/CGOpenMPRuntime.cpp | 10 +- lib/CodeGen/CGOpenMPRuntime.h | 5 +- lib/CodeGen/CGStmtOpenMP.cpp | 42 ++--- lib/CodeGen/CodeGenModule.cpp | 18 +-- lib/CodeGen/CodeGenModule.h | 2 +- lib/CodeGen/ItaniumCXXABI.cpp | 4 +- lib/CodeGen/TargetInfo.cpp | 8 + lib/Driver/ToolChains/Clang.cpp | 1 + lib/Frontend/CompilerInvocation.cpp | 2 + lib/Headers/__clang_cuda_device_functions.h | 22 +++ lib/Sema/SemaTemplateDeduction.cpp | 99 ++++++++---- test/CodeGen/debug-info-section-macho.c | 16 ++ test/CodeGen/mips-aggregate-arg.c | 38 +++++ test/CodeGenOpenCL/amdgpu-abi-struct-coerce.cl | 2 +- test/CodeGenOpenCL/cl-uniform-wg-size.cl | 16 ++ test/CodeGenOpenCL/convergent.cl | 5 +- test/Driver/opencl.cl | 2 + .../distribute_parallel_for_reduction_codegen.cpp | 84 ++++++++++ test/SemaCXX/constant-expression-cxx1y.cpp | 5 +- utils/TableGen/ClangOptionDocEmitter.cpp | 22 ++- 30 files changed, 657 insertions(+), 334 deletions(-) create mode 100644 test/CodeGen/debug-info-section-macho.c create mode 100644 test/CodeGen/mips-aggregate-arg.c create mode 100644 test/CodeGenOpenCL/cl-uniform-wg-size.cl create mode 100644 test/OpenMP/distribute_parallel_for_reduction_codegen.cpp