Fix warnings occured during profiledboostrap on
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr42237.c
blob58db8660ca3b33cefa0cf66986eac59d7b615a0a
1 struct A
3 int p;
4 };
6 struct B
8 struct A n;
9 struct A m;
10 int x;
11 int y;
12 int z;
15 extern int g1, g2;
17 static void __attribute__((noinline)) foo (struct B *b)
19 int t;
21 t = b->n.p;
22 g1 = t;
23 b->n.p = t+1;
24 g2 = b->m.p;
26 b->m = b->n;
29 void bar (struct B *b)
31 foo (b);