Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/roundl.c')
-rw-r--r--winsup/mingw/mingwex/math/roundl.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/winsup/mingw/mingwex/math/roundl.c b/winsup/mingw/mingwex/math/roundl.c
deleted file mode 100644
index de3334a62..000000000
--- a/winsup/mingw/mingwex/math/roundl.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <fenv.h>
-
-long double
-roundl (long double x) {
- long double retval;
- unsigned short saved_cw, _cw;
- __asm__ (
- "fnstcw %0;"
- : "=m" (saved_cw)
- ); /* save control word */
- _cw = ~(FE_TONEAREST | FE_DOWNWARD | FE_UPWARD | FE_TOWARDZERO)
- | (x > 0.0 ? FE_UPWARD : FE_DOWNWARD); /* round away from zero */
- __asm__ (
- "fldcw %0;"
- :
- : "m" (_cw)
- ); /* load the rounding control */
- __asm__ (
- "frndint;"
- : "=t" (retval)
- : "0" (x)
- ); /* do the rounding */
- __asm__ (
- "fldcw %0;"
- :
- : "m" (saved_cw)
- ); /* restore control word */
- return retval;
-}
-