Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/common/lib/libc/arch/arm/string Unless we are using an XSCAL...



details:   https://anonhg.NetBSD.org/src/rev/c9266eb528d9
branches:  trunk
changeset: 789480:c9266eb528d9
user:      matt <matt%NetBSD.org@localhost>
date:      Tue Aug 20 07:25:52 2013 +0000

description:
Unless we are using an XSCALE, default to the normal arm version of memcpy.

diffstat:

 common/lib/libc/arch/arm/string/memcpy.S |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r 7b84524320e2 -r c9266eb528d9 common/lib/libc/arch/arm/string/memcpy.S
--- a/common/lib/libc/arch/arm/string/memcpy.S  Tue Aug 20 00:20:55 2013 +0000
+++ b/common/lib/libc/arch/arm/string/memcpy.S  Tue Aug 20 07:25:52 2013 +0000
@@ -1,8 +1,8 @@
-/*     $NetBSD: memcpy.S,v 1.4 2013/02/15 22:35:39 matt Exp $  */
+/*     $NetBSD: memcpy.S,v 1.5 2013/08/20 07:25:52 matt Exp $  */
 
 #include <arm/cdefs.h>
 
-#if !defined(_ARM_ARCH_DWORD_OK) || defined(_STANDALONE)
+#if !defined(__XSCALE__) || defined(_STANDALONE)
 #include "memcpy_arm.S"
 #else
 #include "memcpy_xscale.S"



Home | Main Index | Thread Index | Old Index