diff options
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 |