[OPENMP] parsing 'linear' clause (for directive 'omp simd')

Differential Revision: http://reviews.llvm.org/D3272

llvm-svn: 206891
This commit is contained in:
Alexander Musman
2014-04-22 13:09:42 +00:00
parent 761aa37e3e
commit 8dba66412b
20 changed files with 693 additions and 20 deletions

View File

@@ -83,6 +83,7 @@ unsigned clang::getOpenMPSimpleClauseType(OpenMPClauseKind Kind,
case OMPC_private:
case OMPC_firstprivate:
case OMPC_shared:
case OMPC_linear:
case OMPC_copyin:
case NUM_OPENMP_CLAUSES:
break;
@@ -110,6 +111,7 @@ const char *clang::getOpenMPSimpleClauseTypeName(OpenMPClauseKind Kind,
case OMPC_private:
case OMPC_firstprivate:
case OMPC_shared:
case OMPC_linear:
case OMPC_copyin:
case NUM_OPENMP_CLAUSES:
break;