forked from KolibriOS/kolibrios
upload sdk
git-svn-id: svn://kolibrios.org@4349 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
32
contrib/sdk/sources/newlib/math/f_rintf.c
Normal file
32
contrib/sdk/sources/newlib/math/f_rintf.c
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* ====================================================
|
||||
* x87 FP implementation contributed to Newlib by
|
||||
* Dave Korn, November 2007. This file is placed in the
|
||||
* public domain. Permission to use, copy, modify, and
|
||||
* distribute this software is freely granted.
|
||||
* ====================================================
|
||||
*/
|
||||
|
||||
#if defined(__GNUC__) && !defined(_SOFT_FLOAT)
|
||||
|
||||
#include <math.h>
|
||||
|
||||
/*
|
||||
* Fast math version of rintf(x)
|
||||
* Return x rounded to integral value according to the prevailing
|
||||
* rounding mode.
|
||||
* Method:
|
||||
* Using inline x87 asms.
|
||||
* Exception:
|
||||
* Governed by x87 FPCR.
|
||||
*/
|
||||
|
||||
float _f_rintf (float x)
|
||||
{
|
||||
float _result;
|
||||
asm ("frndint" : "=t" (_result) : "0" (x));
|
||||
return _result;
|
||||
}
|
||||
|
||||
#endif /* !__GNUC__ || _SOFT_FLOAT */
|
||||
|
Reference in New Issue
Block a user