diff options
author | Thomas Koenig <tkoenig@gcc.gnu.org> | 2015-05-03 18:09:57 +0000 |
---|---|---|
committer | Thomas Koenig <tkoenig@gcc.gnu.org> | 2015-05-03 18:09:57 +0000 |
commit | 816426afdd2ec146cd01bb8172729c8b56f66f79 (patch) | |
tree | de67de5e2b03b79564fc2c1dc53eefc079bb629e /gcc | |
parent | cabb9d59a232a7b209ca86bd3c88da8c7dda8e83 (diff) | |
download | gcc-816426afdd2ec146cd01bb8172729c8b56f66f79.zip gcc-816426afdd2ec146cd01bb8172729c8b56f66f79.tar.gz gcc-816426afdd2ec146cd01bb8172729c8b56f66f79.tar.bz2 |
re PR fortran/37131 (inline matmul for small matrix sizes)
2015-05-03 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/37131
* gfortran.dg/bound_9.f90: Add pointer assignment.
From-SVN: r222751
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/bound_9.f90 | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index e5ff091a..3c92d7e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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> diff --git a/gcc/testsuite/gfortran.dg/bound_9.f90 b/gcc/testsuite/gfortran.dg/bound_9.f90 index d413ca4..b88ff14 100644 --- a/gcc/testsuite/gfortran.dg/bound_9.f90 +++ b/gcc/testsuite/gfortran.dg/bound_9.f90 @@ -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 |