Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!CAD.BERKELEY.EDU!island!orkney!derek From: island!orkney!derek@CAD.BERKELEY.EDU (Derek Clegg) Newsgroups: gnu.gcc.bug Subject: `gcc' dies with a fatal signal 11 Message-ID: <8908221515.AA01295@orkney.island.uucp> Date: 22 Aug 89 15:15:08 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 31 /* Version: * gcc version 1.35 * File: * * Compile with: * gcc -O -Wall -c * Problem: * `gcc' dies with a fatal signal 11. * Output: * : In function foo: * :27: `N' undeclared (first use this function) * :27: (Each undeclared identifier is reported only once * :27: for each function it appears in.) * :30: `table' undeclared (first use this function) * :27: warning: unused variable `table' * gcc: Program cc1 got fatal signal 11. * Notes: * gcc was compiled with `config.gcc sun3-os4'. * I am using a Sun 3/60 with UNIX 4.2 (Sun release 4.0.1). * * Derek B Clegg ({uunet,ucbcad,sun}!island!derek) */ static void foo(void) { int k; unsigned char table[N]; for (k = 256; --k >= 0; ) table[k] = 0; }