aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr52592.c
blob: b71eb628de260ea98d2137b6202514e5b889285a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* PR middle-end/52592 */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -O2 -ffast-math" } */

#define T(type, name) \
type name (type);		\
__attribute__((cold))		\
int f##name (type x)		\
{				\
  return (int) name (x);	\
}

T (double, round)
T (float, roundf)
T (long double, roundl)
T (double, rint)
T (float, rintf)
T (long double, rintl)

/* { dg-final { scan-assembler-not "__builtin_iround" } } */
/* { dg-final { scan-assembler-not "__builtin_irint" } } */