movntq causes SIGILL on k6-3. Lets it be for K7, P3 cpus only

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@689 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nickols_k 2001-05-02 14:59:33 +00:00
parent 798db8a716
commit 2c071ee1ff
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ uint64_t mmx_grnmask = 0xfcfcfcfcfcfcfcfc;
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