aboutsummaryrefslogtreecommitdiff
path: root/string/aarch64/check-arch.S
blob: 15654654701d5a2499777f3720b170e6a6782e36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * check ARCH setting.
 *
 * Copyright (c) 2020, Arm Limited.
 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
 */

#if !__aarch64__
# error ARCH setting does not match the compiler.
#endif

/* Include for GNU property notes.  */
#include "../asmdefs.h"