about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/s_rintl.c
blob: 6946f611c3d7ef9046b6e9f54981892a5dbfffd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Written by J.T. Conklin <jtc@netbsd.org>.
 * Changes for long double by Ulrich Drepper <drepper@cygnus.com>
 * Public domain.
 */

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

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

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

libm_alias_ldouble (__rint, rint)