diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-25 10:27:13 -0400 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-30 10:23:33 -0400 |
commit | 14a388f43bbdfac304a1a117731ac5a27fdab61e (patch) | |
tree | bc247661b21e63f33dd297dd26dac0e4f7bb9fbf /clang/lib/AST/StmtProfile.cpp | |
parent | 67474c60d344a061d6c3affb70e7c8a13c15f830 (diff) | |
download | bcm5719-llvm-14a388f43bbdfac304a1a117731ac5a27fdab61e.tar.gz bcm5719-llvm-14a388f43bbdfac304a1a117731ac5a27fdab61e.zip |
[OPENMP50]Add support for parallel master taskloop simd directive.
Added full support for parallel master taskloop simd directive.
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 d1e85653893..6f266cf1294 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -937,6 +937,11 @@ void StmtProfiler::VisitOMPParallelMasterTaskLoopDirective( VisitOMPLoopDirective(S); } +void StmtProfiler::VisitOMPParallelMasterTaskLoopSimdDirective( + const OMPParallelMasterTaskLoopSimdDirective *S) { + VisitOMPLoopDirective(S); +} + void StmtProfiler::VisitOMPDistributeDirective( const OMPDistributeDirective *S) { VisitOMPLoopDirective(S); |