Improve code generation of strided SLP loads
[official-gcc.git] / gcc / testsuite / gfortran.dg / inquire.f90
blob0661b99f55fa4303b00e4693c02f25892fda547a
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
4 ! check to see that you cannot open a direct access file
5 ! for sequential i/o.
6 ! derived from NIST test fm910.for
7 IMPLICIT NONE
8 CHARACTER*10 D4VK
9 OPEN(UNIT=7, ACCESS='DIRECT',RECL=132,STATUS='SCRATCH')
10 INQUIRE(UNIT=7,SEQUENTIAL=D4VK)
11 CLOSE(UNIT=7,STATUS='DELETE')
12 IF (D4VK.NE.'NO') STOP 1
13 END