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
This commit is contained in:
parent
5a9f05f2ea
commit
b5706132c3
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue