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 memmove 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/memmove.S"
11
12ALIAS(memmove, __unsanitized_memmove)
13ASAN_WEAK_ALIAS(memmove)
14