Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / alias-13.c
blob69e00eb21964cf293eea3977e3ea125a74698f35
1 /* { dg-do link } */
2 /* { dg-options "-O2" } */
4 void link_failure (void);
6 struct a
8 char a1;
9 };
11 int *aa;
13 void g(int *a)
15 aa = a;
16 *a = 2;
19 int t(int i, struct a *b)
21 g(&i);
22 b->a1 = 1;
23 i = 2;
24 if (b->a1 != 1)
25 link_failure ();
27 int main(void)
29 struct a b;
30 t(1, &b);
31 return 0;