Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/arm-optimized-routines/string/arm/check-arch.S
39556 views
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 !__arm__
9
# error ARCH setting does not match the compiler.
10
#endif
11
12
/* For attributes that may affect ABI. */
13
#include "asmdefs.h"
14
15