http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56655



--- Comment #2 from Rich Townsend <townsend at astro dot wisc.edu> 2013-03-20 
13:25:15 UTC ---

(In reply to comment #1)

> (In reply to comment #0)

> > Created attachment 29692 [details]

> > Test source file to reproduce the error

> > 

> > Attempting to compile the attached file with

> > 

> > gfortran -fopenmp -c openmp_ice.f90

> 

> The file in the attachment is called 'test_h5_attr.f90' and I don't find any

> ASSOCIATE construct in there. Wrong file attached?



(In reply to comment #1)

> (In reply to comment #0)

> > Created attachment 29692 [details]

> > Test source file to reproduce the error

> > 

> > Attempting to compile the attached file with

> > 

> > gfortran -fopenmp -c openmp_ice.f90

> 

> The file in the attachment is called 'test_h5_attr.f90' and I don't find any

> ASSOCIATE construct in there. Wrong file attached?



Ooops -- wrong test case. Here it is:



subroutine sub (x)



  implicit none



  real, intent(in) :: x



  !$omp single

  associate(x_a => x)

  end associate

  !$omp end single 



end subroutine sub

Reply via email to