diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-22 06:45:04 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-22 06:45:04 +0000 |
commit | 9fb6e647e71678341e7a344051df439a1020aaf4 (patch) | |
tree | 917e4011ebedc52ff63737e7ee4f6e779e7861f6 /clang/lib/Parse/ParseOpenMP.cpp | |
parent | 8b5126027406918e5b1f6ff4be2e98d231bb7704 (diff) | |
download | bcm5719-llvm-9fb6e647e71678341e7a344051df439a1020aaf4.tar.gz bcm5719-llvm-9fb6e647e71678341e7a344051df439a1020aaf4.zip |
[OPENMP] Initial parsing and sema analysis for 'ordered' directive.
llvm-svn: 213616
Diffstat (limited to 'clang/lib/Parse/ParseOpenMP.cpp')
-rw-r--r-- | clang/lib/Parse/ParseOpenMP.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseOpenMP.cpp b/clang/lib/Parse/ParseOpenMP.cpp index d1544e6baa5..9afe26cee15 100644 --- a/clang/lib/Parse/ParseOpenMP.cpp +++ b/clang/lib/Parse/ParseOpenMP.cpp @@ -92,6 +92,7 @@ Parser::DeclGroupPtrTy Parser::ParseOpenMPDeclarativeDirective() { case OMPD_section: case OMPD_single: case OMPD_master: + case OMPD_ordered: case OMPD_critical: case OMPD_parallel_for: case OMPD_parallel_sections: @@ -113,7 +114,8 @@ Parser::DeclGroupPtrTy Parser::ParseOpenMPDeclarativeDirective() { /// annot_pragma_openmp 'parallel' | 'simd' | 'for' | 'sections' | /// 'section' | 'single' | 'master' | 'critical' [ '(' <name> ')' ] | /// 'parallel for' | 'parallel sections' | 'task' | 'taskyield' | -/// 'barrier' | 'taskwait' | 'flush' {clause} annot_pragma_openmp_end +/// 'barrier' | 'taskwait' | 'flush' | 'ordered' {clause} +/// annot_pragma_openmp_end /// StmtResult Parser::ParseOpenMPDeclarativeOrExecutableDirective(bool StandAloneAllowed) { @@ -176,7 +178,8 @@ Parser::ParseOpenMPDeclarativeOrExecutableDirective(bool StandAloneAllowed) { case OMPD_critical: case OMPD_parallel_for: case OMPD_parallel_sections: - case OMPD_task: { + case OMPD_task: + case OMPD_ordered: { ConsumeToken(); // Parse directive name of the 'critical' directive if any. if (DKind == OMPD_critical) { |