tree-optimization/115701 - fix maybe_duplicate_ssa_info_at_copy
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20000802-1.c
blobe9db4a36e50c7395c3e68923aea6f9184109e3d1
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 __builtin_memcpy(bs.a, y, 3);
14 bs.a[1] = ((x ? &bs.b : &bs.c) - (char *)&bs) - 2;