blob: 9e2f6c8c74bffbea05fa0111ee1c019af6dd4aca [file] [log] [blame]
struct s { int x[4]; };
struct s gs;
void
bar (void)
{
struct s *s;
int i;
s = &gs;
for (i = 0; i < 4; i++)
((char*) (&s->x[i]))[0] = 0;
}