changeset 3370:963c109b0b7e

dead code (not/never used anywhere)
author pl
date Fri, 07 Dec 2001 15:40:13 +0000
parents 13c202356a41
children 45865d6538a1
files memset.c
diffstat 1 files changed, 0 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/memset.c	Fri Dec 07 12:01:43 2001 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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