Cygwin: pinfo: use stpcpy where appropriate
[newlib-cygwin.git] / winsup / cygwin / math / rint.c
blob01f9644b1c8e2af615041f0e1f0e7b398c24e687
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6 #include <math.h>
8 #if defined(__arm__) || defined(_ARM_)
9 /* This works around a compiler bug */
10 double __rint_internal( double x );
11 asm(".def __rint_internal; .scl 2; .type 32; .endef\n"
12 "\t.text\n"
13 "\t.align 4\n"
14 "\t.globl __rint_internal\n"
15 "__rint_internal:\n"
16 "\tvcvtr.s32.f64 s0, d0\n"
17 "\tvcvt.f64.s32 d0, s0\n"
18 "\tbx lr");
19 #endif /* defined(__arm__) || defined(_ARM_) */
21 double rint (double x) {
22 double retval = 0.0;
23 #if defined(_AMD64_) || defined(__x86_64__) || defined(_X86_) || defined(__i386__)
24 __asm__ __volatile__ ("frndint;" : "=t" (retval) : "0" (x));
25 #elif defined(__arm__) || defined(_ARM_)
26 retval = __rint_internal(x);
27 #endif
28 return retval;