PR testsuite/52641
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / struct-aliasing-1.c
blob495b7ba114e46ea6b6e84d8e7b381fadee9c060a
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-fre1-details" } */
4 struct S { float f; };
5 int __attribute__((noinline))
6 foo (float *r, struct S *p)
8 int *q = (int *)&p->f;
9 int i = *q;
10 *r = 0.0;
11 return i + *q;
14 /* { dg-final { scan-tree-dump "Replaced\[^\n\]*with i_." "fre1" } } */
15 /* { dg-final { cleanup-tree-dump "fre1" } } */