aboutsummaryrefslogtreecommitdiff
path: root/string/aarch64/check-arch.S
blob: 5a54242d7de62303fe852f099f7025f32eac9f63 (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
 */

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

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