On 10/30/2015 09:29 PM, Dominique d'Humières wrote: >> diff --git a/gcc/fortran/openmp.c b/gcc/fortran/openmp.c > > Revision r229609 breaks bootstrap: > > ../../work/gcc/fortran/openmp.c: In function 'void resolve_omp_clauses(gfc_code*, gfc_omp_clauses*, gfc_namespace*, bool)': > ../../work/gcc/fortran/openmp.c:2925:27: error: format '%L' expects argument of type 'locus*', but argument 3 has type 'locus' [-Werror=format=] > n->sym->name, n->where); > ^ > cc1plus: all warnings being treated as errors Sorry about that. I as I explained in PR68168, I wasn't using --enable-bootstrap when I tested this patch because I thought it was implied by default. I was able to reproduce this problem and fix it with the attached patch after I explicitly configured and built gcc with --enable-bootstrap. I've applied this patch to trunk, since it should have been included with the original patch in the first place. Cesar