1// Copyright 2017 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "asm.h"
6
7// The memcpy implementation is verbatim from cortex-strings.
8// But we also need to define aliases for the sanitizer runtime.
9
10#include "third_party/lib/cortex-strings/src/aarch64/memcpy.S"
11
12ALIAS(memcpy, __unsanitized_memcpy)
13ASAN_WEAK_ALIAS(memcpy)
14