c81b12e0d7
r336773 removed all things xscale. However, some things xscale are really armv5. Revert that entirely. A more modest removal will follow. Noticed by: andrew@
10 lines
224 B
ArmAsm
10 lines
224 B
ArmAsm
/* $NetBSD: memcpy.S,v 1.4 2003/10/14 07:51:45 scw Exp $ */
|
|
|
|
#include <machine/asm.h>
|
|
__FBSDID("$FreeBSD$");
|
|
#if !defined(_ARM_ARCH_5E) || defined(_STANDALONE)
|
|
#include "memcpy_arm.S"
|
|
#else
|
|
#include "memcpy_xscale.S"
|
|
#endif
|