about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/s_rintl.c
blob: 5b661ac961fe847d0275289aca1ce6bfb3d04e07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Public domain.
 */

#define NO_MATH_REDIRECT
#include <libm-alias-ldouble.h>

long double
__rintl (long double x)
{
  long double res;

  asm ("frndint" : "=t" (res) : "0" (x));
  return res;
}

libm_alias_ldouble (__rint, rint)