Bug 564901: Debug builds on ARM fail saying that emms is not a supported instruction. r=roc

This commit is contained in:
Dave Townsend 2010-05-12 09:52:02 -07:00
parent 03102f3dc9
commit f10be7ce3b

View File

@ -32,7 +32,7 @@ void FastConvertYUVToRGB32Row_C(const uint8* y_buf,
} // extern "C"
// x64 uses MMX2 (SSE) so emms is not required.
#if !defined(ARCH_CPU_X86_64) && !defined(ARCH_CPU_PPC)
#if defined(ARCH_CPU_X86)
#if defined(_MSC_VER)
#define EMMS() __asm emms
#else