testsuite: Add dg-do run to even more tests
[official-gcc.git] / gcc / testsuite / gfortran.dg / gomp / pr77973.f90
blob0fcc2f273cc9b2c4849f25f41d0fcf3afd466a46
1 ! PR fortran/77973
2 ! { dg-do compile }
4 subroutine s(x)
5 integer :: x(:)
6 integer :: i
7 !$omp parallel
8 !$omp target
9 x(1) = 1
10 !$omp end target
11 !$omp end parallel
12 end