diff options
| author | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-14 17:17:41 +0000 |
|---|---|---|
| committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-14 17:17:41 +0000 |
| commit | 5bbceadfc89dda6ff11195aaa3043b2eaaadad25 (patch) | |
| tree | 87b9a3ddb073f6b595290b26a44d96841084ebf6 /clang/lib/AST/StmtProfile.cpp | |
| parent | 5c6ab2a0b1f2da22c8ce4fbfc022f599aaa4a2a6 (diff) | |
| download | bcm5719-llvm-5bbceadfc89dda6ff11195aaa3043b2eaaadad25.tar.gz bcm5719-llvm-5bbceadfc89dda6ff11195aaa3043b2eaaadad25.zip | |
[OPENMP50]Add support for 'parallel master taskloop' construct.
Added parsing/sema/codegen support for 'parallel master taskloop'
constructs. Some of the clauses, like 'grainsize', 'num_tasks', 'final'
and 'priority' are not supported in full, only constant expressions can
be used currently in these clauses.
llvm-svn: 374791
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
| -rw-r--r-- | clang/lib/AST/StmtProfile.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index a51523df99e..efc64af22aa 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -923,6 +923,11 @@ void StmtProfiler::VisitOMPMasterTaskLoopDirective( VisitOMPLoopDirective(S); } +void StmtProfiler::VisitOMPParallelMasterTaskLoopDirective( + const OMPParallelMasterTaskLoopDirective *S) { + VisitOMPLoopDirective(S); +} + void StmtProfiler::VisitOMPDistributeDirective( const OMPDistributeDirective *S) { VisitOMPLoopDirective(S); |

