Bug 37587 - ICE when use graphite
Summary: ICE when use graphite
Status: RESOLVED DUPLICATE of bug 37485
Alias: None
Product: gcc
Classification: Unclassified
Component: middle-end (show other bugs)
Version: 4.4.0
: P3 normal
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords: ice-on-valid-code
Depends on: 37485
Blocks:
  Show dependency treegraph
 
Reported: 2008-09-19 15:18 UTC by macius bat
Modified: 2008-10-03 20:28 UTC (History)
3 users (show)

See Also:
Host: i686-pc-linux-gnu
Target: i686-pc-linux-gnu
Build: i686-pc-linux-gnu
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description macius bat 2008-09-19 15:18:16 UTC
gfortran -v
GNU Fortran (GCC) 4.4.0 20080919 (experimental)

[~/tmp]$gfortran test.f90  -floop-block -O2
test.f90: In function 'main':
test.f90:1: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

the fortran source:

program main
implicit none
integer,parameter :: N=900
real(kind=8) :: x(N)
integer(kind=4) :: i
do i=1,N
x(i)=sin(real(i,8))
end do
print *, sum(x)
end program main
Comment 1 macius bat 2008-09-23 05:06:59 UTC
can anybody comfirm it?

I built gcc ppl polylib cloog mpfr gmp with CFLAGS="-pipe -O3 -ftree-vectorize -march=pentium4 -mfpmath=sse"

glibc and binutils are of my gentoo 2008.0   hosts'
Comment 2 Sebastian Pop 2008-10-03 20:28:51 UTC
This bug will be fixed when the patches for PR37485 will be in trunk.
The bug is fixed in the graphite branch.

Sebastian


*** This bug has been marked as a duplicate of 37485 ***