2007-03-09 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/31099
* gfortran.dg/unformatted_recl.f90: New test.
From-SVN: r122776
+2007-03-09 Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+ PR libgfortran/31099
+ * gfortran.dg/unformatted_recl.f90: New test.
+
2007-03-09 Roger Sayle <roger@eyesopen.com>
* gcc.dg/fold-eqcmplx-1.c: New test case.
--- /dev/null
+! { dg-do run }
+! PR31099 Runtime error on legal code using RECL
+program test
+ integer :: a, b
+ a=1
+ b=2
+ open(10, status="scratch", form="unformatted", recl=8)
+ write(10) a,b
+ write(10) a,b
+ write(10) a,b
+ write(10) b, a
+ rewind(10)
+ b=0
+ a=0
+ read(10) a, b
+ read(10) a, b
+ read(10) a, b
+ read(10) a, b
+ if ((a.ne.2).and.( b.ne.1)) call abort()
+end program test
+