commit | 0162e459efac896816898588f6bbcf1fae43df41 | [log] [tgz] |
---|---|---|
author | Alexey Bataev <a.bataev@hotmail.com> | Tue Jul 22 10:10:35 2014 +0000 |
committer | Alexey Bataev <a.bataev@hotmail.com> | Tue Jul 22 10:10:35 2014 +0000 |
tree | 57ff192fe3ebc50146104d8f26269f0646ff3e3b | |
parent | 9fb6e647e71678341e7a344051df439a1020aaf4 [diff] [blame] |
[OPENMP] Initial parsing and sema analysis for 'atomic' directive. llvm-svn: 213639
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 0e30886..c2bfa465 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -435,6 +435,10 @@ VisitOMPExecutableDirective(S); } +void StmtProfiler::VisitOMPAtomicDirective(const OMPAtomicDirective *S) { + VisitOMPExecutableDirective(S); +} + void StmtProfiler::VisitExpr(const Expr *S) { VisitStmt(S); }