diff options
author | benl <benl@FreeBSD.org> | 2011-05-22 22:17:06 +0000 |
---|---|---|
committer | benl <benl@FreeBSD.org> | 2011-05-22 22:17:06 +0000 |
commit | 383b306f0a67acf8f459ff44a54abfdc085a7b0e (patch) | |
tree | e4d361069bb21555aa50fe046c78e63e724aed33 /contrib/gcc/omp-low.c | |
parent | 9dc57d1405dd2c0bcbeb0a8f971ae24937bff1b3 (diff) | |
download | FreeBSD-src-383b306f0a67acf8f459ff44a54abfdc085a7b0e.zip FreeBSD-src-383b306f0a67acf8f459ff44a54abfdc085a7b0e.tar.gz |
Fix clang warnings.
Approved by: philip (mentor)
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) |