* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-26.c
blob05ce9af48c75a0744f0e4b53f2a366e3b0e159a1
1 /* { dg-do compile } */
2 /* { dg-options "-O -fno-tree-sra -fdump-tree-fre1-details" } */
4 union U {
5 float f;
6 int i;
7 };
9 int foo (union U *p)
11 union U u;
12 p->f = 0.0;
13 u = *p;
14 return u.i;
17 /* avr has 16 bit int and 32 bit float */
18 /* { dg-final { scan-tree-dump "Replaced u.i with 0 in" "fre1" {xfail avr-*-* } } } */