diff options
Diffstat (limited to 'libgomp/testsuite/libgomp.oacc-fortran/declare-5.f90')
-rw-r--r-- | libgomp/testsuite/libgomp.oacc-fortran/declare-5.f90 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgomp/testsuite/libgomp.oacc-fortran/declare-5.f90 b/libgomp/testsuite/libgomp.oacc-fortran/declare-5.f90 index 4f5c8f0..3ab9114 100644 --- a/libgomp/testsuite/libgomp.oacc-fortran/declare-5.f90 +++ b/libgomp/testsuite/libgomp.oacc-fortran/declare-5.f90 @@ -12,7 +12,7 @@ program test implicit none real a - if (acc_is_present (b) .neqv. .true.) call abort + if (acc_is_present (b) .neqv. .true.) STOP 1 a = 2.0 @@ -22,8 +22,8 @@ program test a = a + b !$acc end parallel - if (acc_is_present (b) .neqv. .true.) call abort + if (acc_is_present (b) .neqv. .true.) STOP 2 - if (a .ne. 3.0) call abort + if (a .ne. 3.0) STOP 3 end program test |