+2004-09-26 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
+
+ PR fortran/15164
+ * gfortran.dg/pr15164.f90: New test.
+
2004-09-26 Roger Sayle <roger@eyesopen.com>
PR middle-end/17112
--- /dev/null
+! { dg-do compile }
+! I couldn't reproduce the failure with a compiler built from the
+! 2004-09-26 sources
+ module specfiles
+ contains
+ subroutine split(i,o,lenout,n)
+ integer(kind=4),intent(in) :: lenout,n
+ character(len=*),intent(in) :: i
+ character(len=lenout),dimension(n),intent(out) :: o
+ integer(kind=4) :: j,k,l
+ j=1; k=1
+ outstrings(j)(k:k)=instring(i:i)
+ return
+ end subroutine split
+ end module specfiles