Comment 5 for bug 475450

Revision history for this message
Andy Whitcroft (apw) wrote : Re: gcc-4.4 4.4.2-1ubuntu2 __builtin_offsetof seems to trigger "internal compiler error: Segmentation fault"

I have also found another crash in the & operator, the following code triggers another crash:

struct foo {
 unsigned short foo_A;
 struct {
  unsigned int foo_B;
 } foo_C[];
};

void bar()
{
  &((struct foo *)0)->foo_C[2].foo_B;
}