diff mbox

[gomp4.5] Small fix after merge from trunk

Message ID 20160628134435.GB7387@tucnak.redhat.com
State New
Headers show

Commit Message

Jakub Jelinek June 28, 2016, 1:44 p.m. UTC
Hi!

I've merged trunk into gomp-4_5-branch, the following change was all that
was needed to make it build.

2016-06-28  Jakub Jelinek  <jakub@redhat.com>

	* openmp.c (match_acc): Change mask type from uint64_t to
	const omp_mask.


	Jakub
diff mbox

Patch

--- gcc/fortran/openmp.c.jj	2016-06-28 14:51:11.000000000 +0200
+++ gcc/fortran/openmp.c	2016-06-28 15:31:51.938312160 +0200
@@ -1930,7 +1930,7 @@  gfc_match_omp_clauses (gfc_omp_clauses *
 
 
 static match
-match_acc (gfc_exec_op op, uint64_t mask)
+match_acc (gfc_exec_op op, const omp_mask mask)
 {
   gfc_omp_clauses *c;
   if (gfc_match_omp_clauses (&c, mask, false, false, true) != MATCH_YES)