Retro68/gcc/libgomp/testsuite/libgomp.oacc-fortran/abort-2.f90
2018-12-28 16:30:48 +01:00

17 lines
302 B
Fortran

! Verify that a conditional "call abort" inside an OpenACC parallel region does
! the right thing.
program main
implicit none
integer :: argc
argc = command_argument_count ()
!$acc parallel copyin(argc)
if (argc .ne. 0) then
call abort
end if
!$acc end parallel
end program main