1*412f47f9SXin Li/* 2*412f47f9SXin Li * check ARCH setting. 3*412f47f9SXin Li * 4*412f47f9SXin Li * Copyright (c) 2020-2022, Arm Limited. 5*412f47f9SXin Li * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception 6*412f47f9SXin Li */ 7*412f47f9SXin Li 8*412f47f9SXin Li#if !__arm__ 9*412f47f9SXin Li# error ARCH setting does not match the compiler. 10*412f47f9SXin Li#endif 11*412f47f9SXin Li 12*412f47f9SXin Li/* For attributes that may affect ABI. */ 13*412f47f9SXin Li#include "asmdefs.h" 14