[gnu.gcc.bug] `gcc' dies with a fatal signal

derek@UUNET.UU.NET (Derek Clegg) (03/10/89)

/* Version:
 *     gcc version 1.34
 * File:
 *     <this file>
 * Compile with:
 *     gcc -c <this file>
 * Problem:
 *     `gcc' dies with a fatal signal 6.
 * Output:
 *     gcc: Program cc1 got fatal signal 6.
 * Notes:
 *     gcc was compiled with `config.gcc sun3'.
 *     I am using a Sun 3/60 with UNIX 4.2 (Sun release 3.5).
 *
 *		Derek B Clegg ({uunet,ucbcad,sun}!island!derek)
 */
static inline void
foo(x,y)
double x,y;
{
}

void
bar(x)
int x;
{
    foo(x,x);
}