Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/aarch64.h
35291 views
1
//===-- cpu_model/aarch64.h --------------------------------------------- -===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#include "cpu_model.h"
10
11
#if !defined(__aarch64__)
12
#error This file is intended only for aarch64-based targets
13
#endif
14
15
#if !defined(DISABLE_AARCH64_FMV)
16
17
#include "AArch64CPUFeatures.inc"
18
19
void __init_cpu_features(void);
20
21
#endif // !defined(DISABLE_AARCH64_FMV)
22
23