xref: /freebsd-src/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/aarch64.h (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1*0fca6ea1SDimitry Andric //===-- cpu_model/aarch64.h --------------------------------------------- -===//
2*0fca6ea1SDimitry Andric //
3*0fca6ea1SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*0fca6ea1SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*0fca6ea1SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*0fca6ea1SDimitry Andric //
7*0fca6ea1SDimitry Andric //===----------------------------------------------------------------------===//
8*0fca6ea1SDimitry Andric 
9*0fca6ea1SDimitry Andric #include "cpu_model.h"
10*0fca6ea1SDimitry Andric 
11*0fca6ea1SDimitry Andric #if !defined(__aarch64__)
12*0fca6ea1SDimitry Andric #error This file is intended only for aarch64-based targets
13*0fca6ea1SDimitry Andric #endif
14*0fca6ea1SDimitry Andric 
15*0fca6ea1SDimitry Andric #if !defined(DISABLE_AARCH64_FMV)
16*0fca6ea1SDimitry Andric 
17*0fca6ea1SDimitry Andric #include "AArch64CPUFeatures.inc"
18*0fca6ea1SDimitry Andric 
19*0fca6ea1SDimitry Andric void __init_cpu_features(void);
20*0fca6ea1SDimitry Andric 
21*0fca6ea1SDimitry Andric #endif // !defined(DISABLE_AARCH64_FMV)
22