repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gfortran.fortran-torture
/
execute
/
slash_edit.f90
blob
c73d5432a31e58b564660cea3c44ffe90a95bd3c
1
! pr 14762 - '/' not working in format
2
INTEGER
N
(
5
)
3
DATA
N
/
1
,
2
,
3
,
4
,
5
/
4
OPEN
(
UNIT
=
7
)
5
100
FORMAT
(
I4
)
6
WRITE
(
7
,
100
)
N
7
CLOSE
(
7
)
8
OPEN
(
7
)
9
200
FORMAT
(
I4
,///
I4
)
10
READ
(
7
,
200
)
I
,
J
11
CLOSE
(
7
)
12
IF
(
I
.
NE
.1
)
CALL
ABORT
13
IF
(
J
.
NE
.4
)
CALL
ABORT
14
END