Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!rutgers!tut.cis.ohio-state.edu!UUNET.UU.NET!island!M4!derek From: island!M4!derek@UUNET.UU.NET (Derek Clegg) Newsgroups: gnu.gcc.bug Subject: `gcc' dies with a fatal signal 11. Message-ID: <8904051614.AA04295@M4.> Date: 5 Apr 89 16:14:05 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 41 /* Version: * gcc version 1.34 * File: * * Compile with: * gcc -Wall -c * Problem: * `gcc' dies with a fatal signal 11. * Output: * :29: warning: parameter names (without types) in function * declaration * :31: parse error before `{' * :34: warning: implicit declaration of function `bar' * :34: initializer for static variable is not constant * :34: warning: data definition lacks type or storage class * :35: parse error before `}' * : In function bar: * :39: conflicting types for `bar' * :34: previous declaration of `bar' * gcc: Program cc1 got fatal signal 11. * Notes: * No segmentation fault occurs if `-Wall' is not specified. * `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) */ void foo(x); const char *x; { struct XYZZY *z; z = bar(x); } struct XYZZY * bar(x) const char *x; { }