dead code (not/never used anywhere)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3371 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pl 2001-12-07 15:40:13 +00:00
parent d84ca04a98
commit 1968dc5773
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
#include "config.h"
#ifdef USE_FASTMEMSET
#if defined(HAVE_SSE) || defined(HAVE_SSE2)
/* (C) 2001 Csabai Csaba <csibi@diablo.ovinet.hu> */
inline void *fast_memset(void *ptr, long val, long num)
{
__asm__ __volatile__(
"cmpxchg8 (%2)"
: "=a" (val), "=d" (num)
: "r" (ptr), "0" (val), "1" (num)
:"memory");
return(ptr);
}
#endif
#endif