* gcc.dg/float-range-3.c: Use "dg-do compile" dejagnu directive
[official-gcc/alias-decl.git] / gcc / testsuite / g++.dg / tree-ssa / pr26443.C
blob1db87ab87784524d6044833e1149d90872b5489d
1 // { dg-do compile }
3 struct A
5     double x[4];
6 };
8 struct B
10     A y[2];
13 A foo(B *p)
15     for ( int i=0; i<4; ++i )
16         p->y[1].x[i]=0;
18     A a;
19     return a;