Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gfortran.dg / iso_fortran_env_5.f90
blob92c2e40dea5a6439246071a919abea3a6e18a778
1 ! { dg-do compile }
2 ! { dg-options "-O2 -fdump-tree-original" }
4 ! Check for new F2008 integer constants, needed for
5 ! coarray support (cf. PR fortran/18918)
8 USE iso_fortran_env
9 implicit none
10 integer :: i
11 integer(kind=ATOMIC_INT_KIND) :: atomic_int
12 logical(kind=ATOMIC_LOGICAL_KIND) :: atomic_bool
14 i = 0
15 if (IOSTAT_INQUIRE_INTERNAL_UNIT <= 0) call abort()
16 if (IOSTAT_INQUIRE_INTERNAL_UNIT == STAT_STOPPED_IMAGE) call abort()
17 if (STAT_STOPPED_IMAGE <= 0) call abort()
19 if ((STAT_LOCKED_OTHER_IMAGE == STAT_LOCKED) &
20 .or.(STAT_LOCKED_OTHER_IMAGE == STAT_UNLOCKED)) call abort()
21 if (STAT_LOCKED == STAT_UNLOCKED) call abort()
23 end
25 ! { dg-final { scan-tree-dump-times "abort" 0 "original" } }
26 ! { dg-final { cleanup-tree-dump "original" } }