re PR fortran/32489 (Endless loop when compiling - middle-end?)

2010-01-09 Jerry DeLisle <jvdelisle@gcc.gnu.org>

	PR fortran/32489
	* gfortran.dg/array_constructor_33.f90: New test.
	gfortran.dg/array_function_5.f90: Add credit.

From-SVN: r155772
This commit is contained in:
Jerry DeLisle 2010-01-09 18:31:00 +00:00
parent f5fcb67a0b
commit d5a8d70496
3 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2010-01-09 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/32489
* gfortran.dg/array_constructor_33.f90: New test.
gfortran.dg/array_function_5.f90: Add credit.
2010-01-09 Alexandre Oliva <aoliva@redhat.com>
PR debug/42631

View File

@ -0,0 +1,10 @@
! { dg-do compile }
! PR20923 gfortran slow for large array constructors.
! Test case prepared from PR by Jerry DeLisle <jvdelisle@gcc.gnu.org>
program sel
implicit none
integer(kind=4),parameter :: n=1000
integer(kind=4) :: i,j
real(kind=4),dimension(n*n) :: vect
vect(:) = (/ ((( (i+j+3)),i=1,n),j=1,n) /)
end

View File

@ -1,6 +1,7 @@
! { dg-do run )
! PR41278 internal compiler error related to matmul and transpose
! Test case prepared by Jerry DeLisle <jvdelisle@gcc.gnu.org>
! Original test case by Chris <cmklaij@hetnet.nl>
program bug
implicit none
real, dimension(3,3) :: matA,matB,matC