aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr52555.c
blob: 701683488df991cc6303eec17a81a577eafa0a21 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-options "-ffast-math" } */

float farg;
unsigned val;

void __attribute__((optimize("O")))
test()
{
  val = __builtin_ceilf(farg);
}