Re-enable FMA3 on MSVC2015+ builds.

This commit is contained in:
Unknown W. Brackets 2015-12-22 23:22:16 -08:00
parent 279d3b20cf
commit 4b66c2b4ec

View File

@ -355,8 +355,8 @@ int WINAPI WinMain(HINSTANCE _hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLin
PROFILE_INIT();
#if defined(_M_X64) && defined(_MSC_VER) && _MSC_VER < 1900
// FMA3 support in the 2013 CRT is broken on Vista and Windows 7 RTM (fixed in SP1). Just disable it.
#ifdef _M_X64
_set_FMA3_enable(0);
#endif