blob: 46b3a4744aff072262c154da865b9663a58ebd21 [file] [log] [blame]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <math.h>
float rintf (float x) {
float retval = 0.0F;
#if defined(_AMD64_) || defined(__x86_64__) || defined(_X86_) || defined(__i386__)
__asm__ __volatile__ ("frndint;": "=t" (retval) : "0" (x));
#elif defined(__arm__) || defined(_ARM_)
if (isnan(x) || isinf(x))
return x;
__asm__ __volatile__ (
"vcvtr.s32.f32 %[dst], %[src]\n\t"
"vcvt.f32.s32 %[dst], %[dst]\n\t"
: [dst] "=t" (retval) : [src] "w" (x));
#endif
return retval;
}