diff options
Diffstat (limited to 'contrib/gcc/omp-low.c')
-rw-r--r-- | contrib/gcc/omp-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/omp-low.c b/contrib/gcc/omp-low.c index 3008a1b..49fb8c9 100644 --- a/contrib/gcc/omp-low.c +++ b/contrib/gcc/omp-low.c @@ -118,7 +118,7 @@ static tree maybe_lookup_decl_in_outer_ctx (tree, omp_context *); /* Find an OpenMP clause of type KIND within CLAUSES. */ static tree -find_omp_clause (tree clauses, enum tree_code kind) +find_omp_clause (tree clauses, enum omp_clause_code kind) { for (; clauses ; clauses = OMP_CLAUSE_CHAIN (clauses)) if (OMP_CLAUSE_CODE (clauses) == kind) |