Commit a440e8aa authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Implement _fpreset on arm and aarch64.

parent 0c808ff4
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment