On Tue, Jan 11, 2022 at 10:31:54PM +0000, Hafiz Abid Qadeer wrote: > + gfc_omp_namelist *n; > + for (n = *head; n; n = n->next)
Better for (gfc_omp_namelist *n = *head; n; n = n->next) as we are in C++ and n isn't used after the loop. > + /* non-composite constructs. */ Capital N Ok for trunk with these nits fixed, no need to repost. Jakub