# HG changeset patch # User nickols_k # Date 988815573 0 # Node ID 1a016347010af570effa167e3ddd0423fb2163e0 # Parent bcb46c9eaae14fdc7eacbd4b4973d3cc2e800c31 movntq causes SIGILL on k6-3. Lets it be for K7, P3 cpus only diff -r bcb46c9eaae1 -r 1a016347010a libvo/yuv2rgb_mmx.c --- a/libvo/yuv2rgb_mmx.c Wed May 02 14:48:35 2001 +0000 +++ b/libvo/yuv2rgb_mmx.c Wed May 02 14:59:33 2001 +0000 @@ -53,8 +53,8 @@ uint64_t mmx_grnshift = 0x03; uint64_t mmx_blueshift = 0x03; -#if defined (HAVE_SSE) || defined (HAVE_3DNOW) -#define movntq "movntq" // use this for processors that have SSE or 3Dnow +#ifdef HAVE_MMX2 +#define movntq "movntq" // use this for K7 and p3 only #else #define movntq "movq" // for MMX-only processors #endif