aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/math-torture/floor.c
blob: 0c3aa915644b9b777ff803cfdfbfd7890701faa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do assemble } */

float testlf (float x)
{
  return __builtin_floorf (x);
}
double testl (double x)
{
  return __builtin_floor (x);
}
long double testll (long double x)
{
  return __builtin_floorl (x);
}