Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr84827.c
blob003258c820453e40f5324ccee5bc95685f7b593a
1 /* PR target/84827 */
2 /* { dg-do compile } */
3 /* { dg-options "-Ofast -fno-fp-int-builtin-inexact -ftrapping-math -fno-associative-math -mfpmath=387" } */
5 double
6 f1 (double a)
8 return __builtin_round (a);
11 float
12 f2 (float a)
14 return __builtin_roundf (a);
17 long double
18 f3 (long double a)
20 return __builtin_roundl (a);