aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr33483.c
blob: 8fe2a946bba2772aa2d3278a41f0cc2ac6bbd703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O2" } */

long double f1 (long double x)
{
  return __builtin_fmodl (x, x);
}

long double f2 (long double x)
{
  return __builtin_remainderl (x, x);
}