svn commit: r283805 - head/sys/libkern/arm

Andrew Turner andrew at FreeBSD.org
Sun May 31 07:31:21 UTC 2015


Author: andrew
Date: Sun May 31 07:31:20 2015
New Revision: 283805
URL: https://svnweb.freebsd.org/changeset/base/283805

Log:
  Add more __aeabi_memcpy functions, later versions of clang generate calls
  to these functions.

Modified:
  head/sys/libkern/arm/memcpy.S

Modified: head/sys/libkern/arm/memcpy.S
==============================================================================
--- head/sys/libkern/arm/memcpy.S	Sun May 31 07:28:34 2015	(r283804)
+++ head/sys/libkern/arm/memcpy.S	Sun May 31 07:31:20 2015	(r283805)
@@ -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


More information about the svn-src-all mailing list