1 // PR middle-end/79396
2 // { dg-do compile }
3 // { dg-options "-fnon-call-exceptions -O2" }
4 // { dg-additional-options "-mfma" { target i?86-*-* x86_64-*-* } }
5 
6 struct A { A (); ~A (); };
7 
8 float
foo(float x)9 foo (float x)
10 {
11   A a;
12   return __builtin_pow (x, 2) + 2;
13 }
14