mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:51:58 +00:00
[CRT]
Fix MSVC build. svn path=/trunk/; revision=54451
This commit is contained in:
parent
a9e9b29ff5
commit
df03d3cc8b
1 changed files with 3 additions and 1 deletions
|
@ -26,6 +26,9 @@
|
||||||
double ldexp (double value, int exp)
|
double ldexp (double value, int exp)
|
||||||
{
|
{
|
||||||
register double result;
|
register double result;
|
||||||
|
#ifndef __GNUC__
|
||||||
|
register double __dy = (double)exp;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Check for value correctness
|
/* Check for value correctness
|
||||||
* and set errno if required
|
* and set errno if required
|
||||||
|
@ -49,7 +52,6 @@ double ldexp (double value, int exp)
|
||||||
: "1");
|
: "1");
|
||||||
#endif
|
#endif
|
||||||
#else /* !__GNUC__ */
|
#else /* !__GNUC__ */
|
||||||
register double __dy = (double)exp;
|
|
||||||
__asm
|
__asm
|
||||||
{
|
{
|
||||||
fld __dy
|
fld __dy
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue