diff --git a/libvo/fastmemcpy.h b/libvo/fastmemcpy.h index a90a0bfe7d..09c40bc12f 100644 --- a/libvo/fastmemcpy.h +++ b/libvo/fastmemcpy.h @@ -126,26 +126,13 @@ inline static void * fast_memcpy(void * to, const void * from, unsigned len) /* * Now do the tail of the block */ -#if 0 small_memcpy(to, from, len); -#else - __asm__ __volatile__ ( - "shrl $1,%%ecx\n" - "jnc 1f\n" - "movsb\n" - "1:\n" - "shrl $1,%%ecx\n" - "jnc 2f\n" - "movsw\n" - "2:\n" - "rep ; movsl\n" - ::"D" (to), "S" (from),"c" (len) - : "memory"); -#endif return p; } #define memcpy(a,b,c) fast_memcpy(a,b,c) +#undef small_memcpy + #endif #endif