ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git] / gcc / testsuite / gfortran.dg / do_concurrent_6.f90
blob9585a9f96f431d9f5399cc6056726c8c194c320d
1 ! { dg-do compile }
2 ! { dg-additional-options "-fdump-tree-original" }
4 program main
5 real, dimension(100) :: a,b
6 call random_number(a)
7 do concurrent (i=1:100)
8 b(i) = a(i)*a(i)
9 end do
10 print *,sum(a)
11 end program main
13 ! { dg-final { scan-tree-dump-times "ivdep" 1 "original" } }