Retro68/gcc/libgomp/testsuite/libgomp.fortran/pr84418-1.f90

27 lines
586 B
Fortran
Raw Normal View History

2018-12-28 15:30:48 +00:00
! PR fortran/84418
! { dg-do run { target vect_simd_clones } }
! { dg-options "-fno-inline" }
! { dg-additional-options "-msse2" { target sse2_runtime } }
! { dg-additional-options "-mavx" { target avx_runtime } }
real :: a(1024), b(1024), c(1024)
integer :: i
do i = 1, 1024
a(i) = 0.5 * i
b(i) = 1.5 * i
end do
!$omp simd
do i = 1, 1024
c(i) = foo (a(i), b(i))
end do
do i = 1, 1024
if (c(i).ne.(2 * i)) STOP 1
end do
contains
real function foo (x, y)
real :: x, y
!$omp declare simd linear (ref (x, y))
foo = x + y
end function
end