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 Add END()



details:   https://anonhg.NetBSD.org/src/rev/e8189664ceb6
branches:  trunk
changeset: 789438:e8189664ceb6
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Aug 19 02:37:12 2013 +0000

description:
Add END()

diffstat:

 common/lib/libc/arch/arm/string/memmove.S |  15 ++++++++++-----
 1 files changed, 10 insertions(+), 5 deletions(-)

diffs (33 lines):

diff -r 59ae599e9d3d -r e8189664ceb6 common/lib/libc/arch/arm/string/memmove.S
--- a/common/lib/libc/arch/arm/string/memmove.S Mon Aug 19 02:36:27 2013 +0000
+++ b/common/lib/libc/arch/arm/string/memmove.S Mon Aug 19 02:37:12 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: memmove.S,v 1.5 2013/08/11 04:56:32 matt Exp $ */
+/*     $NetBSD: memmove.S,v 1.6 2013/08/19 02:37:12 matt Exp $ */
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -31,10 +31,6 @@
 
 #include <machine/asm.h>
 
-#if defined(__ARM_EABI__) && !defined(BCOPY)
-STRONG_ALIAS(__aeabi_memmove, memmove)
-#endif
-
 #ifndef _BCOPY
 /* LINTSTUB: Func: void *memmove(void *, const void *, size_t) */
 ENTRY(memmove)
@@ -583,3 +579,12 @@
 .Lmemmove_bsrcul1l4:
        add     r1, r1, #1
        b       .Lmemmove_bl4
+#ifndef _BCOPY
+END(memmove)
+#else
+END(bcopy)
+#endif
+
+#if defined(__ARM_EABI__) && !defined(BCOPY)
+STRONG_ALIAS(__aeabi_memmove, memmove)
+#endif



Home | Main Index | Thread Index | Old Index