No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / tree-ssa / pr27218.C
blob644d2fca9ac4425f9e2e78f8e53eebe841c86723
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 struct Vector
6     double _x, _y;
7 };
8 typedef Vector Point;
9 Vector d;
10 static inline Vector f(void)
12   return d;
14 void add_duck (void)
16     new Point (f());