mirror of git://sourceware.org/git/glibc.git
10 lines
284 B
ArmAsm
10 lines
284 B
ArmAsm
/* Under __ARM_NEON__ memcpy_neon.S defines memcpy directly
|
|
and the __memcpy_vfp code will never be used. */
|
|
#ifndef __ARM_NEON__
|
|
# define MEMCPY_VFP
|
|
# define memcpy __memcpy_vfp
|
|
# undef libc_hidden_builtin_def
|
|
# define libc_hidden_builtin_def(a)
|
|
# include "memcpy_impl.S"
|
|
#endif
|