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/cygwin/math/ldexpl.c')
-rw-r--r--winsup/cygwin/math/ldexpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/math/ldexpl.c b/winsup/cygwin/math/ldexpl.c
index fde31a23c..2438617c3 100644
--- a/winsup/cygwin/math/ldexpl.c
+++ b/winsup/cygwin/math/ldexpl.c
@@ -13,7 +13,7 @@ long double ldexpl(long double x, int expn)
return x;
__asm__ __volatile__ ("fscale"
- : "=t" (res)
+ : "=t" (res)
: "0" (x), "u" ((long double) expn));
if (!isfinite (res) || res == 0.0L)