This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/19654] compilation crashes when variable is too large instead of showing error
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 27 Jan 2005 13:41:18 -0000
- Subject: [Bug fortran/19654] compilation crashes when variable is too large instead of showing error
- References: <20050127121026.19654.guillemborrell@yahoo.es>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-27 13:41 -------
Confirmed, reduced (and self contained) testcase:
program kk
implicit none
integer, parameter :: N=32768, M=N/2-1
real, dimension(N,N) :: input
call random_number(input)
end program kk
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |accepts-invalid, ice-
| |checking, ice-on-invalid-
| |code
Last reconfirmed|0000-00-00 00:00:00 |2005-01-27 13:41:15
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19654