On Fri, Jul 01, 2022 at 05:41:27PM +0200, Tobias Burnus wrote: > --- a/gcc/fortran/dump-parse-tree.cc > +++ b/gcc/fortran/dump-parse-tree.cc > @@ -1414,6 +1414,11 @@ show_omp_namelist (int list_type, gfc_omp_namelist *n) > case OMP_MAP_TO: fputs ("to:", dumpfile); break; > case OMP_MAP_FROM: fputs ("from:", dumpfile); break; > case OMP_MAP_TOFROM: fputs ("tofrom:", dumpfile); break; > + case OMP_MAP_ALWAYS_TO: fputs ("always,to:", dumpfile); break; > + case OMP_MAP_ALWAYS_FROM: fputs ("always,from:", dumpfile); break; > + case OMP_MAP_ALWAYS_TOFROM: fputs ("always,tofrom:", dumpfile); break; > + case OMP_MAP_DELETE: fputs ("always,tofrom:", dumpfile); break; > + case OMP_MAP_RELEASE: fputs ("always,tofrom:", dumpfile); break;
Pasto in the last 2 lines? Other than that LGTM. Jakub