PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr67929_1.c
blobae6cfbf3378d7d3517b3d899c3ee8bbecb03580f
1 int __attribute__ ((noinline, noclone))
2 foo (float a)
4 return a * 4.9f;
8 int
9 main (void)
11 if (foo (10.0f) != 49)
12 __builtin_abort ();
14 return 0;