diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-18 16:47:35 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-18 16:47:35 +0000 |
commit | b8552abfe7ce0c4cd37d136bbcf8cb319a28f260 (patch) | |
tree | 9d8564667394f0f86888e46034f37dd822d9e5f8 /clang/lib/CodeGen/CGOpenMPRuntime.cpp | |
parent | 7e1637451d20d40553165f806094ada30cb0a708 (diff) | |
download | bcm5719-llvm-b8552abfe7ce0c4cd37d136bbcf8cb319a28f260.tar.gz bcm5719-llvm-b8552abfe7ce0c4cd37d136bbcf8cb319a28f260.zip |
[OPENMP50]Add support for master taskloop simd.
Added trsing/semantics/codegen for combined construct master taskloop simd.
llvm-svn: 375255
Diffstat (limited to 'clang/lib/CodeGen/CGOpenMPRuntime.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGOpenMPRuntime.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp index 8b853e8aa13..2a13a2a5815 100644 --- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp +++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp @@ -6706,6 +6706,7 @@ emitNumTeamsForTargetDirective(CodeGenFunction &CGF, case OMPD_taskloop: case OMPD_taskloop_simd: case OMPD_master_taskloop: + case OMPD_master_taskloop_simd: case OMPD_parallel_master_taskloop: case OMPD_requires: case OMPD_unknown: @@ -7014,6 +7015,7 @@ emitNumThreadsForTargetDirective(CodeGenFunction &CGF, case OMPD_taskloop: case OMPD_taskloop_simd: case OMPD_master_taskloop: + case OMPD_master_taskloop_simd: case OMPD_parallel_master_taskloop: case OMPD_requires: case OMPD_unknown: @@ -8787,6 +8789,7 @@ getNestedDistributeDirective(ASTContext &Ctx, const OMPExecutableDirective &D) { case OMPD_taskloop: case OMPD_taskloop_simd: case OMPD_master_taskloop: + case OMPD_master_taskloop_simd: case OMPD_parallel_master_taskloop: case OMPD_requires: case OMPD_unknown: @@ -9546,6 +9549,7 @@ void CGOpenMPRuntime::scanForTargetRegionsFunctions(const Stmt *S, case OMPD_taskloop: case OMPD_taskloop_simd: case OMPD_master_taskloop: + case OMPD_master_taskloop_simd: case OMPD_parallel_master_taskloop: case OMPD_requires: case OMPD_unknown: @@ -10163,6 +10167,7 @@ void CGOpenMPRuntime::emitTargetDataStandAloneCall( case OMPD_taskloop: case OMPD_taskloop_simd: case OMPD_master_taskloop: + case OMPD_master_taskloop_simd: case OMPD_parallel_master_taskloop: case OMPD_target: case OMPD_target_simd: |