]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* gfortran.dg/forall_1.f90: Set previously uninitialized variable.
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
Sun, 5 Jun 2005 18:56:02 +0000 (20:56 +0200)
committerTobias Schlüter <tobi@gcc.gnu.org>
Sun, 5 Jun 2005 18:56:02 +0000 (20:56 +0200)
From-SVN: r100633

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/forall_1.f90

index 31d6b30435434481e3cdc6b8910076a880631d5c..4c073a79b684a52e54c4537a89a5e0dcaa581d84 100644 (file)
@@ -1,3 +1,7 @@
+2005-06-05  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       * gfortran.dg/forall_1.f90: Set previously uninitialized variable.
+
 2005-06-05  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/21619
index f657dcb279e5416bdcdbe5ce76272e5d2a50a80d..35fcfdd7fd2e0653b43e64bc5d47e6ae89ffb545 100644 (file)
@@ -7,6 +7,7 @@ type a
 end type a
 type(a) :: a1(10), a2(5,5)
 
+i1 = (/ 0, 1, 2, 3, 4, 0, 6, 7, 8, 9, 10, 0, 0, 13, 14 /)
 forall (i=1:15, i1(i) /= 0)
    i1(i) = 0
 end forall