Add END()

This commit is contained in:
matt 2013-08-19 02:37:12 +00:00
parent de1d51c4ce
commit 70e4c7e047
1 changed files with 10 additions and 5 deletions

View File

@ -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