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
This commit is contained in:
Thomas Koenig 2015-05-03 18:09:57 +00:00
parent cabb9d59a2
commit 816426afdd
2 changed files with 6 additions and 0 deletions

View 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>

View 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