Commit b5706132 by David Billinghurst Committed by David Billinghurst

re PR fortran/10965 (g77 compiles illegal code in testsuite)

2003-06-03  David Billinghurst (David.Billinghurst@riotinto.com)

	PR fortran/10965
	* g77.f-torture/compile/20000601-2.f: Fix non-standard code.

From-SVN: r67349
parent 5a9f05f2
2003-06-03 David Billinghurst (David.Billinghurst@riotinto.com)
PR fortran/10965
* g77.f-torture/compile/20000601-2.f: Fix non-standard code.
2003-06-02 Mark Mitchell <mark@codesourcery.com>
* lib/scanasm.exp (dg-scan): New function, factored out of ...
......
......@@ -11,14 +11,14 @@
INTEGER KL, KU, LDAB, M
REAL AB( LDAB, * )
INTEGER J, JB, JJ, JP, KV, KM
INTEGER J, JB, JJ, JP, KV, KM, F
REAL WORK13(65,64), WORK31(65,64)
KV = KU + KL
DO J = 1, M
JB = MIN( 1, M-J+1 )
DO JJ = J, J + JB - 1
KM = MIN( KL, M-JJ )
JP = MAX( KM+1, AB( KV+1, JJ ) )
JP = F( KM+1, AB( KV+1, JJ ) )
CALL SSWAP( JB, AB( KV+1+JJ-J, J ), LDAB-1,
$ AB( KV+JP+JJ-J, J ), LDAB-1 )
END DO
......
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