blob: 3d9b3aa0e594e872dc263754509521655fb31fad [file] [log] [blame]
//===-- cpu_model/aarch64.h --------------------------------------------- -===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "cpu_model.h"
#if !defined(__aarch64__) && !defined(__arm64__) && !defined(_M_ARM64) && \
!defined(__arm64ec__) && !defined(_M_ARM64EC)
#error This file is intended only for aarch64-based targets
#endif
#if !defined(DISABLE_AARCH64_FMV)
#include "AArch64CPUFeatures.inc"
void __init_cpu_features(void);
#endif // !defined(DISABLE_AARCH64_FMV)