diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-23 07:46:59 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-23 07:46:59 +0000 |
commit | dea4761c06f9dd40032c31c952922e2cb62ae3c4 (patch) | |
tree | 3dd047b93989f4a11c379e73e6caa04c6a960829 /clang/lib/AST/StmtProfile.cpp | |
parent | 9a0051cd59d108f70b12acb54bdc5bee246f3fae (diff) | |
download | bcm5719-llvm-dea4761c06f9dd40032c31c952922e2cb62ae3c4.tar.gz bcm5719-llvm-dea4761c06f9dd40032c31c952922e2cb62ae3c4.zip |
[OPENMP] Initial parsing an sema analysis for 'write' clause of 'atomic' directive.
llvm-svn: 213728
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
-rw-r--r-- | clang/lib/AST/StmtProfile.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 4cf7077ee84..b65d07036b4 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -312,6 +312,8 @@ void OMPClauseProfiler::VisitOMPMergeableClause(const OMPMergeableClause *) {} void OMPClauseProfiler::VisitOMPReadClause(const OMPReadClause *) {} +void OMPClauseProfiler::VisitOMPWriteClause(const OMPWriteClause *) {} + template<typename T> void OMPClauseProfiler::VisitOMPClauseList(T *Node) { for (auto *I : Node->varlists()) |