OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gfortran.dg/] [alloc_comp_misc_1.f90] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! PR 29804
2
! This used to fail, it was magically fixed; keep in the testsuite so
3
! that we keep an eye on it.
4
!
5
! { dg-do run }
6
! { dg-options "-fbounds-check" }
7
program dt_bnd
8
  implicit none
9
 
10
  type dbprc_type
11
    integer, allocatable          :: ipv(:)
12
  end type dbprc_type
13
 
14
  type(dbprc_type), allocatable :: pre(:)
15
  call ppset(pre)
16
 
17
contains
18
  subroutine ppset(p)
19
    type(dbprc_type),allocatable, intent(inout) :: p(:)
20
    integer                       :: nl
21
    nl = 1
22
 
23
    allocate(p(1))
24
    if (.not.allocated(p(nl)%ipv)) then
25
      allocate(p(1)%ipv(1))
26
    end if
27
  end subroutine ppset
28
end program dt_bnd

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.