blob: 1a8d8bbe9e128618105be0652de42a34fbc52d73 (
plain)
1
2
3
4
5
6
7
8
9
|
/* For __ARM_NEON__ this file defines memcpy. */
#ifndef __ARM_NEON__
# define memcpy __memcpy_neon
# undef libc_hidden_builtin_def
# define libc_hidden_builtin_def(a)
#endif
#define MEMCPY_NEON
#include "memcpy_impl.S"
|