diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2015-12-03 09:40:15 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2015-12-03 09:40:15 +0000 |
commit | 0a6ed84a0d2f3c7c5aeb9d6b702ac127613d2b1b (patch) | |
tree | b620bf6989da38a339fe426f1388412a9ce456fd /clang/lib/AST/StmtProfile.cpp | |
parent | 830dfccfb2c06a1749938ce8cb78a1d6a295b942 (diff) | |
download | bcm5719-llvm-0a6ed84a0d2f3c7c5aeb9d6b702ac127613d2b1b.tar.gz bcm5719-llvm-0a6ed84a0d2f3c7c5aeb9d6b702ac127613d2b1b.zip |
[OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive.
OpenMP 4.5 adds directive 'taskloop simd'. Patch adds parsing/sema analysis for 'taskloop simd' directive and its clauses.
llvm-svn: 254597
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 72d9fa1eeaa..cdd53c2aa02 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -589,6 +589,11 @@ void StmtProfiler::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *S) { VisitOMPLoopDirective(S); } +void StmtProfiler::VisitOMPTaskLoopSimdDirective( + const OMPTaskLoopSimdDirective *S) { + VisitOMPLoopDirective(S); +} + void StmtProfiler::VisitExpr(const Expr *S) { VisitStmt(S); } |