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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [derived_comp_array_ref_7.f90] - Rev 694

Compare with Previous | Blame | View Log

! { dg-do run }
! Check the fix for PR32129 #4 in which the argument 'vec(vy(i, :))' was
! incorrectly simplified, resulting in an ICE.
!
! Reported by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
!
program testCode
  implicit none
  type vec
    real, dimension(2) :: coords
  end type
  integer :: i
  real, dimension(2,2), parameter :: vy = reshape ((/1,2,3,4/),(/2,2/))
  i = 1
  if (any (foo(vec(vy(i, :))) /= vy(i, :))) call abort ()

contains

  function foo (xin)
    type(vec) :: xin
    real, dimension (2) :: foo
    intent(in)  xin
    foo = xin%coords
  end function
end program

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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