prefer prefetchnta if its available

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5663 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2002-04-17 19:11:52 +00:00
parent 588dd085f4
commit 65a12da973
1 changed files with 3 additions and 3 deletions

View File

@ -104,10 +104,10 @@ __asm__ __volatile__(\
#undef PREFETCH
#undef EMMS
#ifdef HAVE_3DNOW
#define PREFETCH "prefetch"
#elif defined ( HAVE_MMX2 )
#ifdef HAVE_MMX2
#define PREFETCH "prefetchnta"
#elif defined ( HAVE_3DNOW )
#define PREFETCH "prefetch"
#else
#define PREFETCH "/nop"
#endif