aarch64.h 631 B

123456789101112131415161718192021
  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. #include "cpu_model.h"
  9. #if !defined(__aarch64__)
  10. #error This file is intended only for aarch64-based targets
  11. #endif
  12. #if !defined(DISABLE_AARCH64_FMV)
  13. #include "AArch64CPUFeatures.inc"
  14. void __init_cpu_features(void);
  15. #endif // !defined(DISABLE_AARCH64_FMV)