re PR tree-optimization/33593 (tree-outof-ssa moves sources of non-call exceptions...
[gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr27830.C
1 /* { dg-do compile } */
2 /* { dg-options "-O" } */
3
4 struct gc{};
5 struct transform:public gc
6 {
7 double x, y, z, t;
8 transform (void){}
9 };
10 inline transform f (void)
11 {
12 return transform ();
13 };
14 void transformed (void)
15 {
16 new transform (f());
17 }
18