PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr46307.c
blobc308b5669f2a758b82f14c1ac3b15430eb879eb2
1 /* PR debug/46307 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -g" } */
5 double fma (double, double, double);
7 double
8 foo (double x, double y, double z)
10 double a = x * y + z;
11 double b = __builtin_fma (x, y, z);
12 double c = fma (x, y, z);
13 return x / y / z;