diff options
author | tkoenig <tkoenig@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-29 21:47:00 +0000 |
---|---|---|
committer | tkoenig <tkoenig@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-29 21:47:00 +0000 |
commit | 4f8bd4e3de4684ce7fef8dfff7710a5814205f47 (patch) | |
tree | ccb936ec9709cd3f64c6caacd724aa810b1abdd8 /gcc/testsuite/gfortran.dg/matmul_1.f90 | |
parent | a5bd524b0c4b5fd3d91bbbdd16baceafb07b11d3 (diff) | |
download | gcc-4f8bd4e3de4684ce7fef8dfff7710a5814205f47.tar.gz |
2005-07-29 Thomas Koenig <Thomas.Koenig@online.de>
* gfortran.dg/matmul_1.f90: Correct LHS of matmul test (it
used to have the wrong bounds).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102568 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gfortran.dg/matmul_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/matmul_1.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/matmul_1.f90 b/gcc/testsuite/gfortran.dg/matmul_1.f90 index b3881c9facc..6496f88a2c7 100644 --- a/gcc/testsuite/gfortran.dg/matmul_1.f90 +++ b/gcc/testsuite/gfortran.dg/matmul_1.f90 @@ -33,7 +33,7 @@ Program matmul_1 ! array sections c = 0.0_T - c = matmul (a(7:9,3:N), b(3:N,3:4)) + c(1:3,1:2) = matmul (a(7:9,3:N), b(3:N,3:4)) if (sum (c) /= 576.0_T) call abort () ! uses a temp |