aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorThomas Koenig <tkoenig@gcc.gnu.org>2015-05-03 18:09:57 +0000
committerThomas Koenig <tkoenig@gcc.gnu.org>2015-05-03 18:09:57 +0000
commit816426afdd2ec146cd01bb8172729c8b56f66f79 (patch)
treede67de5e2b03b79564fc2c1dc53eefc079bb629e /gcc
parentcabb9d59a232a7b209ca86bd3c88da8c7dda8e83 (diff)
downloadgcc-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/ChangeLog5
-rw-r--r--gcc/testsuite/gfortran.dg/bound_9.f901
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