summaryrefslogtreecommitdiffstats
path: root/contrib/gcc/omp-low.c
diff options
context:
space:
mode:
authorbenl <benl@FreeBSD.org>2011-05-22 22:17:06 +0000
committerbenl <benl@FreeBSD.org>2011-05-22 22:17:06 +0000
commit383b306f0a67acf8f459ff44a54abfdc085a7b0e (patch)
treee4d361069bb21555aa50fe046c78e63e724aed33 /contrib/gcc/omp-low.c
parent9dc57d1405dd2c0bcbeb0a8f971ae24937bff1b3 (diff)
downloadFreeBSD-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.c2
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)
OpenPOWER on IntegriCloud