rt_gccstream/gcc/testsuite/gcc.dg/pr33007.c

12 lines
225 B
C

/* { dg-do compile } */
/* { dg-options "-O -ffast-math -ftrapping-math" } */
/* { dg-warning "-fassociative-math disabled" "" { target *-*-* } 1 } */
long
foo (int i)
{
float x;
x = i;
return __builtin_lroundf (x);
}