2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20000802-1.c
blob0b2f1d6af568d8c24462a53433d43e39031cb893
1 struct foo {
2 char a[3];
3 char b;
4 char c;
5 };
7 struct foo bs;
8 int x;
9 char y[3];
11 void bar(void)
13 memcpy(bs.a, y, 3);
14 bs.a[1] = ((x ? &bs.b : &bs.c) - (char *)&bs) - 2;