re PR fortran/44934 (Bogus "Missing format for FORMATTED data transfer")

2010-07-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libfortran/44934
	* gfortran.dg/endfile_2.f90: Fix to unformatted file type.

From-SVN: r162204
This commit is contained in:
Jerry DeLisle 2010-07-15 03:42:29 +00:00
parent c0d1689058
commit 6b58c62f29
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-07-14 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/44934
* gfortran.dg/endfile_2.f90: Fix to unformatted file type.
2010-07-14 Jason Merrill <jason@redhat.com> 2010-07-14 Jason Merrill <jason@redhat.com>
PR c++/44810 PR c++/44810

View File

@ -5,7 +5,7 @@
integer i integer i
endfile(8) endfile(8)
rewind(8) rewind(8)
read(8,*,end=0023)i read(8,end=0023)i
call abort ! should never get here call abort ! should never get here
stop stop
0023 continue 0023 continue