blob: 4dda06f75d04b559d04228f8a18d78a75eafd8b9 [file] [log] [blame]
Anton Korobeynikovb047b042012-01-30 10:21:23 +00001//===-- 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
Saleem Abdulrasool310874a2014-05-12 15:23:37 +000014 .p2align 2
Anton Korobeynikovb047b042012-01-30 10:21:23 +000015DEFINE_COMPILERRT_FUNCTION(__aeabi_memmove)
16 b memmove
Joerg Sonnenberger171e9cf2014-01-24 14:33:42 +000017END_COMPILERRT_FUNCTION(__aeabi_memmove)
Anton Korobeynikovb047b042012-01-30 10:21:23 +000018
19DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_memmove4, __aeabi_memmove)
20DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_memmove8, __aeabi_memmove)