Path: utzoo!utgpu!watmath!uunet!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 6. Message-ID: <8904051634.AA04343@M4.> Date: 5 Apr 89 16:34:58 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 27 /* Version: * gcc version 1.34 * File: * * Compile with: * gcc -c * Problem: * `gcc' dies with a fatal signal 6. * Output: * : In function bar: * :26: incompatible types in assignment * gcc: Program cc1 got fatal signal 6. * 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) */ struct FOO { struct { int x; double y; } a, b; } foo; void bar() { foo.a = foo.b = (struct XYZZY *)0; }