Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
a3f2b833
Commit
a3f2b833
authored
Jun 09, 2009
by
Janne Blomqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PR libfortran/40334 backspace regression
From-SVN: r148324
parent
e5871e24
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/gfortran.dg/backspace_11.f90
+24
-0
No files found.
gcc/testsuite/ChangeLog
View file @
a3f2b833
2009-06-09 Janne Blomqvist <jb@gcc.gnu.org>
PR libfortran/40334
* gfortran.dg/backspace_11.f90: New.
2009-06-09 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/defaulted10.C: New.
...
...
gcc/testsuite/gfortran.dg/backspace_11.f90
0 → 100644
View file @
a3f2b833
! { dg-do run }
! PR 40334 backspace regression
program
backspace_11
implicit
none
character
(
len
=
5
)
::
str
open
(
10
,
access
=
'sequential'
,
status
=
'scratch'
)
write
(
10
,
'(A)'
)
'HELLO'
rewind
(
10
)
do
read
(
10
,
'(A)'
,
end
=
1
)
str
enddo
1
backspace
10
!the file pointer is now at EOF
read
(
10
,
*
,
end
=
2
)
str
call
abort
2
backspace
10
!the file pointer is now at EOF
read
(
10
,
'(A)'
,
end
=
3
)
str
call
abort
3
continue
end
program
backspace_11
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment