Merge pull request #275 from mstorsjo/fix-win64-noasm-build

Fix building for win64 with assembly disabled
This commit is contained in:
volvet 2014-02-10 09:00:31 +08:00
commit a4d9ba3feb

View File

@ -85,7 +85,7 @@ void WelsXmmRegEmptyOp(void * pSrc);
typedef void (*WelsXmmRegProtectFunc)(void * pSrc);
#ifdef WIN64
#if defined(WIN64) && defined(X86_ASM)
#define XMMREG_PROTECT_DECLARE(name) \
WelsXmmRegProtectFunc name##load;\
WelsXmmRegProtectFunc name##store;\