Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr54563.C
blob2980320f66369ed868b5766702abdf0e1ae455c2
1 // PR tree-optimization/54563
2 // { dg-do compile }
4 extern "C" float powf (float, float);
5 struct S { ~S (); };
6 double bar ();
7 double x;
9 void
10 foo ()
12   S s;
13   x = powf (bar (), 2.);