PR testsuite/52641
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr18589-10.c
blob4a6120abd6dd80539e3693754ca98eb16453bd37
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -ffast-math -fdump-tree-optimized" } */
4 double baz (double x, double y, double z)
6 return (__builtin_pow (x, 4.0) * __builtin_pow (y, 2.0)
7 * __builtin_pow (z, 4.0));
10 /* { dg-final { scan-tree-dump-times " \\* " 5 "optimized" } } */
11 /* { dg-final { cleanup-tree-dump "optimized" } } */