2012-01-30 18:21:23 +08:00
|
|
|
//===-- aeabi_memmove.S - EABI memmove implementation --------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "../assembly.h"
|
|
|
|
|
|
|
|
// void __aeabi_memmove(void *dest, void *src, size_t n) { memmove(dest, src, n); }
|
|
|
|
|
2014-05-12 23:23:37 +08:00
|
|
|
.p2align 2
|
2012-01-30 18:21:23 +08:00
|
|
|
DEFINE_COMPILERRT_FUNCTION(__aeabi_memmove)
|
|
|
|
b memmove
|
2014-01-24 22:33:42 +08:00
|
|
|
END_COMPILERRT_FUNCTION(__aeabi_memmove)
|
2012-01-30 18:21:23 +08:00
|
|
|
|
|
|
|
DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_memmove4, __aeabi_memmove)
|
|
|
|
DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_memmove8, __aeabi_memmove)
|
2016-06-23 06:09:42 +08:00
|
|
|
|
|
|
|
NO_EXEC_STACK_DIRECTIVE
|
|
|
|
|