Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!UUNET.UU.NET!island!aland!derek From: island!aland!derek@UUNET.UU.NET (Derek Clegg) Newsgroups: gnu.gcc.bug Subject: `gcc' dies with a fatal signal 6. Message-ID: <8905301507.AA28339@aland.island.uucp> Date: 30 May 89 15:07:18 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 32 /* Version: * gcc version 1.35 * File: * * Compile with: * gcc -O -fstrength-reduce -c * Problem: * `gcc' dies with a fatal signal 6. * Output: * gcc: Program cc1 got fatal signal 6. * Notes: * gcc was compiled with `config.gcc sun4-os4'. * I am using a Sun 4/260 with UNIX 4.2 (Sun release 4.0.1). * * Derek B Clegg ({uunet,ucbcad,sun}!island!derek) */ struct s { int x,y; } wl[1]; void foo() { struct s *w; w = wl; while (1) { bar(w->y); w->y = 0; w++; } }