aboutsummaryrefslogtreecommitdiff
path: root/string/aarch64/check-arch.S
blob: 58f92d926dd3c46131ac2575b995eb0feee8d536 (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"