blob: cdc8c6a549538a18889c6a51edcbd45090671129 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-do compile } */
/* { dg-options "-O -ffast-math -ftrapping-math" } */
/* { dg-warning "-fassociative-math disabled" "" { target *-*-* } 0 } */
long
foo (int i)
{
float x;
x = i;
return __builtin_lroundf (x);
}
|