Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr23268.c
blobb5645b2974eb35a2a43fb53f9d079c4f7171c41c
1 /* PR target/23268 */
2 /* Testcase reduced by Andrew Pinski */
3 /* { dg-do compile } */
4 /* { dg-options "-O1 -ffast-math" } */
6 int
7 f (float x)
9 int a, b;
10 a = __builtin_log (2.f);
11 b = __builtin_lrint (x);
12 return (a + b);