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
* config/i386/i386.md (paritydi2, paritysi2): New expanders.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
readwrite_unf_direct_eor_1.f90
blob
2c19eba39276f98e32520a989c1798dd207719a8
1
! { dg-do run }
2
! PR 30056 - exceeding the record length was misrepresented as an EOF
3
! on read and ignored on write
4
program
main
5
integer
i
,
j
6
open
(
10
,
form
=
"unformatted"
,
access
=
"direct"
,
recl
=
4
)
7
write
(
10
,
rec
=
1
,
err
=
10
)
1
,
2
8
call
abort
()
9
10
continue
10
read
(
10
,
rec
=
1
,
err
=
20
)
i
,
j
11
call
abort
()
12
20
continue
13
end