This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/66347] Seg fault (ICE) on compile
- From: "sgk at troutmask dot apl.washington.edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 05 Jun 2015 21:36:08 +0000
- Subject: [Bug fortran/66347] Seg fault (ICE) on compile
- Auto-submitted: auto-generated
- References: <bug-66347-4 at http dot gcc dot gnu dot org/bugzilla/>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66347
--- Comment #5 from Steve Kargl <sgk at troutmask dot apl.washington.edu> ---
On Fri, Jun 05, 2015 at 05:53:24PM +0000, kargl at gcc dot gnu.org wrote:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66347
>
> --- Comment #4 from kargl at gcc dot gnu.org ---
> Reduced testcase.
>
> block data
> integer n
> parameter (n=1)
> character*2 s1(n)
> character*8 s2(n)
common /foo/ s1, s2
>
> data (s1(i),s2(i),i=1,n)/"ab","12345678"/
> end
4.8.x and 4.9.x flag the missing common statement.