Module: wine Branch: master Commit: a440e8aa8e519b122f6f2c8f7c919f891d5b8ff9 URL: https://source.winehq.org/git/wine.git/?a=commit;h=a440e8aa8e519b122f6f2c8f7... Author: Piotr Caban <piotr(a)codeweavers.com> Date: Wed Aug 4 18:05:29 2021 +0200 msvcrt: Implement _fpreset on arm and aarch64. Signed-off-by: Piotr Caban <piotr(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/msvcrt/math.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dlls/msvcrt/math.c b/dlls/msvcrt/math.c index a60104e16b3..bb450fad01c 100644 --- a/dlls/msvcrt/math.c +++ b/dlls/msvcrt/math.c @@ -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 }