view libgomp/testsuite/libgomp.fortran/omp_atomic2.f90 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents a06113de4d67
children 1830386684a0
line wrap: on
line source

! { dg-do run }
! { dg-options "-std=legacy" }

  real, dimension (20) :: r
  integer, dimension (20) :: d
  integer :: i, j, k, n
  integer (kind = 2) :: a, b, c

  do 10 i = 1, 20
    r(i) = i
10  d(i) = 21 - i

  n = 20
  call foo (r, d, n)

  if (n .ne. 22) STOP 1
  if (any (r .ne. 33)) STOP 2

  i = 1
  j = 18
  k = 23
!$omp atomic
  i = min (i, j, k, n)
  if (i .ne. 1) STOP 3
!$omp atomic
  i = max (j, n, k, i)
  if (i .ne. 23) STOP 4

  a = 1
  b = 18
  c = 23
!$omp atomic
  a = min (a, b, c)
  if (a .ne. 1) STOP 5
!$omp atomic
  a = max (a, b, c)
  if (a .ne. 23) STOP 6

contains
  function bar (i)
    real bar
    integer i
    bar = 12.0 + i
  end function bar

  subroutine foo (x, y, n)
    integer i, y (*), n
    real x (*)
    do i = 1, n
!$omp atomic
      x(y(i)) = x(y(i)) + bar (i)
    end do
!$omp atomic
    n = n + 2
  end subroutine foo
end