[Bug fortran/36192] ICE: Segmentation fault
kargl at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Fri May 9 18:05:00 GMT 2008
------- Comment #2 from kargl at gcc dot gnu dot org 2008-05-09 18:04 -------
While gfortran should not ICE, this program is seriously flawed with
illegal Fortran. Just one example.
! Simulation parameters
real, parameter :: n = 2, d = 2
! Body masses
real, dimension(n), parameter :: m = (/ 1.0, 1.0 /)
! Body parameters
real, dimension(n,d) :: &
The arguments to dimension() should be integer type.
Fix your code and the ICE may go away.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36192
More information about the Gcc-bugs
mailing list