From 4acb859fbdad4b5bc9208d3bfaea6847a682e26f Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Mon, 7 Jul 2014 13:01:15 +0000 Subject: [OPENMP] Added initial support for 'omp parallel for'. llvm-svn: 212453 --- clang/lib/AST/StmtProfile.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'clang/lib/AST/StmtProfile.cpp') diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index f666be7008f..73ec8d733a6 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -380,6 +380,11 @@ void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { VisitOMPExecutableDirective(S); } +void +StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { + VisitOMPExecutableDirective(S); +} + void StmtProfiler::VisitExpr(const Expr *S) { VisitStmt(S); } -- cgit v1.2.3