PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr18589-10.c
blob5d644a1950c8ab9506862c2f54188e89b3abc670
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 " \\* " 4 "optimized" } } */