re PR fortran/37131 (inline matmul for small matrix sizes)
authorThomas Koenig <tkoenig@gcc.gnu.org>
Sun, 3 May 2015 18:09:57 +0000 (18:09 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Sun, 3 May 2015 18:09:57 +0000 (18:09 +0000)
2015-05-03  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/37131
* gfortran.dg/bound_9.f90:  Add pointer assignment.

From-SVN: r222751

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

index e5ff091..3c92d7e 100644 (file)
@@ -1,3 +1,8 @@
+2015-05-03  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/37131
+       * gfortran.dg/bound_9.f90:  Add pointer assignment.
+
 2015-05-01  Paolo Carlini  <paolo.carlini@oracle.com>
            Prathamesh Kulharni  <prathamesh.kulkarni@linaro.org>
 
index d413ca4..b88ff14 100644 (file)
@@ -54,6 +54,7 @@ program main
   call foo(empty, a(2:0), n, m)
   if (n .ne. 1 .or. m .ne. 1) call abort
   allocate (x(0))
+  y => a(3:2)
   call bar (x, y, n, m)
   if (n .ne. 1 .or. m .ne. 1) call abort