OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [array_function_2.f90] - Blame information for rev 316

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do run }
2
! { dg-options "-fbounds-check" }
3
 
4
! PR fortran/37199
5
! We used to produce wrong (segfaulting) code for this one because the
6
! temporary array for the function result had wrong bounds.
7
 
8
! Contributed by Gavin Salam 
9
 
10
program bounds_issue
11
  implicit none
12
  integer, parameter  :: dp = kind(1.0d0)
13
  real(dp), pointer :: pdf0(:,:), dpdf(:,:)
14
 
15
  allocate(pdf0(0:282,-6:7))
16
  allocate(dpdf(0:282,-6:7))  ! with dpdf(0:283,-6:7) [illegal] error disappears
17
  !write(0,*) lbound(dpdf), ubound(dpdf)
18
  dpdf = tmp_PConv(pdf0)
19
 
20
contains
21
  function tmp_PConv(q_in) result(Pxq)
22
    real(dp),      intent(in) :: q_in(0:,-6:)
23
    real(dp)                  :: Pxq(0:ubound(q_in,dim=1),-6:7)
24
    Pxq = 0d0
25
    !write(0,*) lbound(q_in), ubound(q_in)
26
    !write(0,*) lbound(Pxq),  ubound(Pxq)
27
    return
28
  end function tmp_PConv
29
 
30
end program bounds_issue

powered by: WebSVN 2.1.0

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