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.
9 long double ldexpl(long double x
, int expn
)
11 long double res
= 0.0L;
12 if (!isfinite (x
) || x
== 0.0L)
15 __asm__
__volatile__ ("fscale"
17 : "0" (x
), "u" ((long double) expn
));
19 if (!isfinite (res
) || res
== 0.0L)