diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-23 02:27:21 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-23 02:27:21 +0000 |
commit | f98b00c33e83cb507c21107e8c56961a4b043509 (patch) | |
tree | b8df40845ba99247ce32566d7297478b0830225b /clang/lib/AST/StmtProfile.cpp | |
parent | 6310757568fa3e6433435206102bf2d0cc4300e2 (diff) | |
download | bcm5719-llvm-f98b00c33e83cb507c21107e8c56961a4b043509.tar.gz bcm5719-llvm-f98b00c33e83cb507c21107e8c56961a4b043509.zip |
[OPENMP] Initial parsing and sema analysis for 'read' clause in 'atomic' directive.
llvm-svn: 213717
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 c2bfa46531d..4cf7077ee84 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -310,6 +310,8 @@ void OMPClauseProfiler::VisitOMPUntiedClause(const OMPUntiedClause *) {} void OMPClauseProfiler::VisitOMPMergeableClause(const OMPMergeableClause *) {} +void OMPClauseProfiler::VisitOMPReadClause(const OMPReadClause *) {} + template<typename T> void OMPClauseProfiler::VisitOMPClauseList(T *Node) { for (auto *I : Node->varlists()) |