erik quanstrom <[email protected]> once said: > since even ghostscript doesn't get into this state, i'd be interested > in the line of code (and types of the variables) that hits this fatal > condition.
I posted a small piece of code that triggers this on golang-dev.
Here it is:
% cat x.c
unsigned long long x;
int f(int);
void
test(void)
{
int a;
a = f(a-x+a);
}
% 8c x.c
8c 98: suicide: sys: trap: fault read addr=0x0 pc=0x0003712f
%
Cheers,
Anthony
