diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-24 06:46:57 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-24 06:46:57 +0000 |
commit | 459dec0ca2a765fc7fa6bc24b662a5e10df18e97 (patch) | |
tree | eacd841808eb3ec53909056748ac2af85fcbd208 /clang/lib/AST/StmtProfile.cpp | |
parent | 65f8732c146f92a6960f352e12959b613d32e848 (diff) | |
download | bcm5719-llvm-459dec0ca2a765fc7fa6bc24b662a5e10df18e97.tar.gz bcm5719-llvm-459dec0ca2a765fc7fa6bc24b662a5e10df18e97.zip |
[OPENMP] Initial parsing and sema analysis for clause 'capture' in 'atomic' directive.
llvm-svn: 213842
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 e4fcbef2e74..6d6e319bd34 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -316,6 +316,8 @@ void OMPClauseProfiler::VisitOMPWriteClause(const OMPWriteClause *) {} void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} +void OMPClauseProfiler::VisitOMPCaptureClause(const OMPCaptureClause *) {} + template<typename T> void OMPClauseProfiler::VisitOMPClauseList(T *Node) { for (auto *I : Node->varlists()) |