PR fortran/15164
authortobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 26 Sep 2004 15:24:57 +0000 (15:24 +0000)
committertobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 26 Sep 2004 15:24:57 +0000 (15:24 +0000)
* gfortran.dg/pr15164.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88131 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/pr15164.f90 [new file with mode: 0644]

index f6ac25c..497d9bf 100644 (file)
@@ -1,3 +1,8 @@
+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
diff --git a/gcc/testsuite/gfortran.dg/pr15164.f90 b/gcc/testsuite/gfortran.dg/pr15164.f90
new file mode 100644 (file)
index 0000000..a1f3788
--- /dev/null
@@ -0,0 +1,15 @@
+! { 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