2010-12-20 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / gomp / pr27573.f90
blob1d3d3b7518f601a8e60bc5362154ea0a105468c0
1 ! PR middle-end/27573
2 ! { dg-do compile }
3 ! { dg-options "-O2 -fopenmp -fprofile-generate" }
5 program pr27573
6 integer i,j
7 j = 8
8 !$omp parallel
9 print *, "foo"
10 do i = 1, j - 1
11 end do
12 !$omp end parallel
13 end