Module Name: src
Committed By: matt
Date: Mon Aug 19 02:37:12 UTC 2013
Modified Files:
src/common/lib/libc/arch/arm/string: memmove.S
Log Message:
Add END()
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/common/lib/libc/arch/arm/string/memmove.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/common/lib/libc/arch/arm/string/memmove.S
diff -u src/common/lib/libc/arch/arm/string/memmove.S:1.5 src/common/lib/libc/arch/arm/string/memmove.S:1.6
--- src/common/lib/libc/arch/arm/string/memmove.S:1.5 Sun Aug 11 04:56:32 2013
+++ src/common/lib/libc/arch/arm/string/memmove.S Mon Aug 19 02:37:12 2013
@@ -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 @@ ENTRY(bcopy)
.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