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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [aliasing_dummy_2.f90] - Blame information for rev 237

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

Line No. Rev Author Line
1 149 jeremybenn
! { dg-do compile }
2
! This tests the fix for PR28885, in which multiple calls to a procedure
3
! with different components of an array of derived types for an INTENT(OUT)
4
! argument caused an ICE internal compiler error.  This came about because
5
! the compiler would lose the temporary declaration with each subsequent
6
! call of the procedure.
7
!
8
! Reduced from the contribution by Drew McCormack  
9
!
10
program test
11
  type t
12
    integer :: i
13
    integer :: j
14
  end type
15
  type (t) :: a(5)
16
  call sub('one',a%j)
17
  call sub('two',a%i)
18
contains
19
  subroutine sub(key,a)
20
    integer, intent(out)    :: a(:)
21
    character(*),intent(in) :: key
22
    a = 1
23
  end subroutine
24
end program

powered by: WebSVN 2.1.0

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