msvcrt: Implement _fpreset on arm and aarch64.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Piotr Caban 2021-08-04 18:05:29 +02:00 committed by Alexandre Julliard
parent 0c808ff4d3
commit a440e8aa8e
1 changed files with 1 additions and 3 deletions

View File

@ -5982,11 +5982,9 @@ void CDECL _fpreset(void)
unsigned int cw = _MCW_EM, sw = 0;
_setfp_sse(&cw, ~0, &sw, ~0);
}
#elif defined(__x86_64__)
#else
unsigned int cw = _MCW_EM, sw = 0;
_setfp(&cw, ~0, &sw, ~0);
#else
FIXME( "not implemented\n" );
#endif
}