OpenCores
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/] [transpose_1.f90] - Blame information for rev 312

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

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do compile }
2
! Tests the fix for PR32962, in which the result of TRANSPOSE, when
3
! an actual argument of an elemental intrinsic would receive the
4
! wrong offset.
5
!
6
! Contributed by Wirawan Purwanto 
7
!
8
  real(kind=8), allocatable :: b(:,:)
9
  real(kind=8) :: a(2,2), c(2,2)
10
  i = 2
11
  allocate (b(i,i))
12
  a(1,1) = 2
13
  a(2,1) = 3
14
  a(1,2) = 7
15
  a(2,2) = 11
16
  call foo
17
  call bar
18
  if (any (c .ne. b)) call abort
19
contains
20
  subroutine foo
21
    b = cos(transpose(a))
22
  end subroutine
23
  subroutine bar
24
    c = transpose(a)
25
    c = cos(c)
26
  end subroutine
27
end program

powered by: WebSVN 2.1.0

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