------- Comment #4 from pault at gcc dot gnu dot org 2006-11-14 21:24 -------
> > If the "implicit none" or the "module ... end module" is removed, the ICE goes > away. Probably worth running using a non-optimized front-end under valgrind. > or replacing a = sum (eps(i:i) * eps) by a = sum (eps * eps) a = sum (eps(1:1) * eps) a = sum (eps(i:i)) also remove the problem integer, parameter :: i = 1 and removing the assinment to i, does likewise. Paul -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29821