OSDN Git Service

* config/i386/i386.md (UNSPEC_VSIBADDR): New.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / iso_fortran_env_5.f90
1 ! { dg-do compile }
2 ! { dg-options "-O2 -fdump-tree-original" }
3 !
4 ! Check for new F2008 integer constants, needed for
5 ! coarray support (cf. PR fortran/18918)
6 !
7
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
13
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()
18
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()
22
23 end
24
25 ! { dg-final { scan-tree-dump-times "abort" 0 "original" } }
26 ! { dg-final { cleanup-tree-dump "original" } }
27