AArch64TargetInfo.h 778 B

123456789101112131415161718192021222324
  1. //===-- AArch64TargetInfo.h - AArch64 Target Implementation -----*- C++ -*-===//
  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. #ifndef LLVM_LIB_TARGET_AARCH64_TARGETINFO_AARCH64TARGETINFO_H
  9. #define LLVM_LIB_TARGET_AARCH64_TARGETINFO_AARCH64TARGETINFO_H
  10. namespace llvm {
  11. class Target;
  12. Target &getTheAArch64leTarget();
  13. Target &getTheAArch64beTarget();
  14. Target &getTheAArch64_32Target();
  15. Target &getTheARM64Target();
  16. Target &getTheARM64_32Target();
  17. } // namespace llvm
  18. #endif // LLVM_LIB_TARGET_AARCH64_TARGETINFO_AARCH64TARGETINFO_H