http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46532
Summary: [OMP] missing error for loop bounds missing an attribute Product: gcc Version: 4.6.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran AssignedTo: unassig...@gcc.gnu.org ReportedBy: joost.vandevond...@pci.uzh.ch IMPLICIT NONE INTEGER :: i,n !'i' is implicitly private, but an attribute must be specified for n !$omp parallel do default(none) DO i=1,n ENDDO END