diff options
| author | Alexey Bataev <a.bataev@hotmail.com> | 2015-12-07 10:51:44 +0000 |
|---|---|---|
| committer | Alexey Bataev <a.bataev@hotmail.com> | 2015-12-07 10:51:44 +0000 |
| commit | b825de17b73f92c05ab174f02a221865702716f9 (patch) | |
| tree | 2da8053d7fcc08cca0bd03f81bd5791c49436272 /clang/lib/Serialization/ASTWriterStmt.cpp | |
| parent | 12301b08144683eddde15e918a839411a26e38c6 (diff) | |
| download | bcm5719-llvm-b825de17b73f92c05ab174f02a221865702716f9.tar.gz bcm5719-llvm-b825de17b73f92c05ab174f02a221865702716f9.zip | |
[OPENMP 4.5] parsing/sema support for 'nogroup' clause.
OpenMP 4.5 adds 'taskloop' and 'taskloop simd' directives. These directives have new 'nogroup' clause. Patch adds basic parsing/sema support for this clause.
llvm-svn: 254899
Diffstat (limited to 'clang/lib/Serialization/ASTWriterStmt.cpp')
| -rw-r--r-- | clang/lib/Serialization/ASTWriterStmt.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Serialization/ASTWriterStmt.cpp b/clang/lib/Serialization/ASTWriterStmt.cpp index f029e6c5584..d9585e684d1 100644 --- a/clang/lib/Serialization/ASTWriterStmt.cpp +++ b/clang/lib/Serialization/ASTWriterStmt.cpp @@ -1843,6 +1843,8 @@ void OMPClauseWriter::VisitOMPThreadsClause(OMPThreadsClause *) {} void OMPClauseWriter::VisitOMPSIMDClause(OMPSIMDClause *) {} +void OMPClauseWriter::VisitOMPNogroupClause(OMPNogroupClause *) {} + void OMPClauseWriter::VisitOMPPrivateClause(OMPPrivateClause *C) { Record.push_back(C->varlist_size()); Writer->Writer.AddSourceLocation(C->getLParenLoc(), Record); |

