view libgomp/testsuite/libgomp.fortran/pr81304.f90 @ 138:fc828634a951

merge
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 08 Nov 2018 14:17:14 +0900
parents 84e7813d76e9
children 1830386684a0
line wrap: on
line source

! PR fortran/81304
! { dg-do run }
! { dg-options "-Wsurprising" }

program pr81304
   integer :: i
   real, dimension(1:3) :: a, b, c
   a = 128
   b = 0
!$omp parallel do reduction(min: a) reduction(max: b) private (c)	! { dg-bogus "Type specified for intrinsic function" }
   do i = 1, 16
     c = (/ i, i - 5, i + 5 /)
     a = min (a, c)
     b = max (b, c)
   end do
   if (any (a /= (/ 1, -4, 6 /)) .or. any (b /= (/ 16, 11, 21 /))) STOP 1
end