re PR fortran/38669 (Array bounds violation for arguments of elemental subroutine)
2009-01-05 Mikael Morin <mikael.morin@tele2.fr> PR fortran/38669 PR fortran/38726 * gfortran.dg/elemental_subroutine_7.f90: Fix p values so that it can be used as vector subscript. From-SVN: r143084
This commit is contained in:
parent
256149524a
commit
95b243af7b
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2009-01-05 Mikael Morin <mikael.morin@tele2.fr>
|
||||
|
||||
PR fortran/38669
|
||||
PR fortran/38726
|
||||
* gfortran.dg/elemental_subroutine_7.f90:
|
||||
Fix p values so that it can be used as vector subscript.
|
||||
|
||||
2009-01-05 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* g++.dg/cpp0x/defaulted7.C: New test.
|
||||
|
|
|
@ -14,7 +14,7 @@ program gfcbu84_main
|
|||
jplev = 42
|
||||
k_lev = 1
|
||||
call random_number (r)
|
||||
p = 20 * r - 10
|
||||
p = 41 * r + 1
|
||||
allocate (q(jplev))
|
||||
|
||||
q = 0
|
||||
|
|
Loading…
Add table
Reference in a new issue