From 97f8390e7d46efe752586bb3812e78ae0c277cfd Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Sun, 31 May 2015 07:31:20 +0000 Subject: [PATCH] Add more __aeabi_memcpy functions, later versions of clang generate calls to these functions. --- sys/libkern/arm/memcpy.S | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/libkern/arm/memcpy.S b/sys/libkern/arm/memcpy.S index 9fca8f6cad86..3703195e11d3 100644 --- a/sys/libkern/arm/memcpy.S +++ b/sys/libkern/arm/memcpy.S @@ -31,7 +31,11 @@ __FBSDID("$FreeBSD$"); #ifdef __ARM_EABI__ ENTRY_NP(__aeabi_memcpy) +EENTRY_NP(__aeabi_memcpy4) +EENTRY_NP(__aeabi_memcpy8) b memcpy +EEND(__aeabi_memcpy8) +EEND(__aeabi_memcpy4) END(__aeabi_memcpy) #endif