From 082b1749a179b056f33db0e6971ad1edeca17cdc Mon Sep 17 00:00:00 2001 From: Paul Thomas Date: Sun, 10 May 2009 10:22:37 +0000 Subject: [PATCH] re PR fortran/40018 (ICE in output_constructor) 2009-05-10 Paul Thomas PR fortran/40018 * trans-array.c (gfc_trans_array_constructor_value): Fold convert numeric constants. (gfc_build_constant_array_constructor): The same. 2009-05-10 Paul Thomas PR fortran/40018 * gfortran.dg/array_constructor_31.f90: New test. From-SVN: r147332 --- gcc/testsuite/gfortran.dg/array_constructor_31.f90 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 gcc/testsuite/gfortran.dg/array_constructor_31.f90 diff --git a/gcc/testsuite/gfortran.dg/array_constructor_31.f90 b/gcc/testsuite/gfortran.dg/array_constructor_31.f90 new file mode 100644 index 0000000..0293634 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/array_constructor_31.f90 @@ -0,0 +1,10 @@ +! { dg-do compile } +! Test the fix for pr40018 in which the elements in the array +! constructor would be of default type and this would cause an +! ICE in the backend because of the type mistmatch with 'i'. +! +! Contributed by Francois-Xavier Coudert +! + integer(kind=8) :: i + write(*,*) [(i, i = 1, 10)] + end -- 2.7.4