Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-45.c
blobea8957fccc5b54173733fe85184318896b3c854e
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre1" } */
4 struct S { float a, b; };
6 float
7 foo (int x, float y)
9 struct S z[1024];
10 z[x].a = y;
11 struct S *p = &z[x];
12 float *q = (float *) p;
13 return *q;
16 /* { dg-final { scan-tree-dump "return y_\\d\+\\(D\\);" "fre1" } } */