]> git.proxmox.com Git - rustc.git/blame - src/llvm/projects/compiler-rt/lib/arm/aeabi_memmove.S
Imported Upstream version 0.6
[rustc.git] / src / llvm / projects / compiler-rt / lib / arm / aeabi_memmove.S
CommitLineData
223e47cc
LB
1//===-- aeabi_memmove.S - EABI memmove implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===---------------------------------------------------------------------===//
9
10#include "../assembly.h"
11
12// void __aeabi_memmove(void *dest, void *src, size_t n) { memmove(dest, src, n); }
13
14 .align 2
15DEFINE_COMPILERRT_FUNCTION(__aeabi_memmove)
16 b memmove
17
18DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_memmove4, __aeabi_memmove)
19DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_memmove8, __aeabi_memmove)