xref: /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/aeabi_memcmp.S (revision 61f2f2562dcc3e4eb50e7ec5dab0dfa1f093861a)
1//===-- aeabi_memcmp.S - EABI memcmp 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_memcmp(void *dest, void *src, size_t n) { memcmp(dest, src, n); }
13
14        .p2align 2
15DEFINE_COMPILERRT_FUNCTION(__aeabi_memcmp)
16        b       memcmp
17END_COMPILERRT_FUNCTION(__aeabi_memcmp)
18
19DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_memcmp4, __aeabi_memcmp)
20DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_memcmp8, __aeabi_memcmp)
21