diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-17 12:47:03 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-17 12:47:03 +0000 |
commit | 74ba3a5880e539e1a4641fcba7a2509fecb383e6 (patch) | |
tree | 9a78d60976a6cbb00b0b00af3c0d07c9ab1ea9df /clang/lib/Parse/ParseOpenMP.cpp | |
parent | 28d7b026873670ff533bf250a72125bce25af84d (diff) | |
download | bcm5719-llvm-74ba3a5880e539e1a4641fcba7a2509fecb383e6.tar.gz bcm5719-llvm-74ba3a5880e539e1a4641fcba7a2509fecb383e6.zip |
[OPENMP] Initial parsing and sema analysis of 'mergeable' clause.
llvm-svn: 213262
Diffstat (limited to 'clang/lib/Parse/ParseOpenMP.cpp')
-rw-r--r-- | clang/lib/Parse/ParseOpenMP.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseOpenMP.cpp b/clang/lib/Parse/ParseOpenMP.cpp index 9f1fa0af154..cfe160216f8 100644 --- a/clang/lib/Parse/ParseOpenMP.cpp +++ b/clang/lib/Parse/ParseOpenMP.cpp @@ -292,7 +292,8 @@ bool Parser::ParseOpenMPSimpleVarList(OpenMPDirectiveKind Kind, /// default-clause | private-clause | firstprivate-clause | shared-clause /// | linear-clause | aligned-clause | collapse-clause | /// lastprivate-clause | reduction-clause | proc_bind-clause | -/// schedule-clause | copyin-clause | copyprivate-clause | untied-clause +/// schedule-clause | copyin-clause | copyprivate-clause | untied-clause | +/// mergeable-clause /// OMPClause *Parser::ParseOpenMPClause(OpenMPDirectiveKind DKind, OpenMPClauseKind CKind, bool FirstClause) { @@ -354,6 +355,7 @@ OMPClause *Parser::ParseOpenMPClause(OpenMPDirectiveKind DKind, case OMPC_ordered: case OMPC_nowait: case OMPC_untied: + case OMPC_mergeable: // OpenMP [2.7.1, Restrictions, p. 9] // Only one ordered clause can appear on a loop directive. // OpenMP [2.7.1, Restrictions, C/C++, p. 4] @@ -472,6 +474,9 @@ OMPClause *Parser::ParseOpenMPSimpleClause(OpenMPClauseKind Kind) { /// untied-clause: /// 'untied' /// +/// mergeable-clause: +/// 'mergeable' +/// OMPClause *Parser::ParseOpenMPClause(OpenMPClauseKind Kind) { SourceLocation Loc = Tok.getLocation(); ConsumeAnyToken(); |