commit | f29276edb7b9c85c9f521eb3e301259bee17aa33 | [log] [tgz] |
---|---|---|
author | Alexey Bataev <a.bataev@hotmail.com> | Wed Jun 18 04:14:57 2014 +0000 |
committer | Alexey Bataev <a.bataev@hotmail.com> | Wed Jun 18 04:14:57 2014 +0000 |
tree | 5173803cd839d4c3ab843cd43945471c7296784f | |
parent | 0039f3f0607702f2d16d60addff74c67869e2144 [diff] [blame] |
[OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC). llvm-svn: 211140
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 17cd28e..ac6a1eb 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -347,6 +347,10 @@ VisitOMPExecutableDirective(S); } +void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { + VisitOMPExecutableDirective(S); +} + void StmtProfiler::VisitExpr(const Expr *S) { VisitStmt(S); }