• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Selected possible memcpy implementations.
3 *
4 * Copyright (c) 2019, Arm Limited.
5 * SPDX-License-Identifier: MIT
6 */
7
8#if __aarch64__
9#include "aarch64/memcpy.S"
10# if __ARM_NEON
11#include "aarch64/memcpy_simd.S"
12# endif
13#elif __arm__
14#include "arm/memcpy.S"
15#endif
16