view gcc/testsuite/gfortran.dg/initialization_22.f90 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
! tests the fix for PR39292, where the intitialization expression
! did not simplify and caused an ICE in gfc_conv_array_initializer.
!
! Contributed by Richard Guenther <rguenth@gcc.gnu.org>
!
  integer :: n
  real, dimension(2) :: a = (/ ( (float(n))**(1.0), n=1,2) /)
  if (any (a .ne. (/ ( (float(n))**(1.0), n=1,2) /))) STOP 1
end