xref: /freebsd/contrib/arm-optimized-routines/string/aarch64/check-arch.S (revision 95eb4b873b6a8b527c5bd78d7191975dfca38998)
1/*
2 * check ARCH setting.
3 *
4 * Copyright (c) 2020-2022, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
6 */
7
8#if !__aarch64__
9# error ARCH setting does not match the compiler.
10#endif
11
12/* Include for GNU property notes.  */
13#include "asmdefs.h"
14