Commit 0bab7d3f by Thomas Koenig Committed by Thomas Koenig

matmul_1.f90: Correct LHS of matmul test (it used to have the wrong bounds).

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).

From-SVN: r102568
parent bc1594c1
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).
2005-07-29 Joseph S. Myers <joseph@codesourcery.com> 2005-07-29 Joseph S. Myers <joseph@codesourcery.com>
PR c/21720 PR c/21720
......
...@@ -33,7 +33,7 @@ Program matmul_1 ...@@ -33,7 +33,7 @@ Program matmul_1
! array sections ! array sections
c = 0.0_T 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 () if (sum (c) /= 576.0_T) call abort ()
! uses a temp ! uses a temp
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment