1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00

Disable mathlib SSE funcs on Win64.

This commit is contained in:
Nicholas Hastings
2016-07-26 11:07:29 -04:00
parent dfd2294860
commit f585dae600

View File

@ -16,6 +16,9 @@
// memdbgon must be the last include file in a .cpp file!!! // memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h" #include "tier0/memdbgon.h"
#ifndef COMPILER_MSVC64
// Implement for 64-bit Windows if needed.
static const uint32 _sincos_masks[] = { (uint32)0x0, (uint32)~0x0 }; static const uint32 _sincos_masks[] = { (uint32)0x0, (uint32)~0x0 };
static const uint32 _sincos_inv_masks[] = { (uint32)~0x0, (uint32)0x0 }; static const uint32 _sincos_inv_masks[] = { (uint32)~0x0, (uint32)0x0 };
@ -843,3 +846,4 @@ vec_t DotProduct (const vec_t *a, const vec_t *c)
} }
*/ */
#endif // COMPILER_MSVC64