URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [pr15129.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run }! { dg-options "-std=legacy" }!! PR 15129: we used to share the character length between A and B in the! subroutine.CHARACTER*10 ACHARACTER*8 BA = 'gfortran'B = 'rocks!'CALL T(A,B)containsSUBROUTINE T(A,B)CHARACTER*(*) A,Bif(len(a)/=10) call abort()if(len(b)/=8) call abort()END SUBROUTINEend
