More fold_negate in match.pd
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / struct-aliasing-1.c
blob7757e5e1795521c376632325141d3fa055b18bcd
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" } } */