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 <ja...@redhat.com> * openmp.c (match_acc): Change mask type from uint64_t to const omp_mask. --- 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) Jakub