//===-- PPCTargetMachine.h - Define TargetMachine for PowerPC ---*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // This file declares the PowerPC specific subclass of TargetMachine. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_POWERPC_PPCTARGETMACHINE_H #define LLVM_LIB_TARGET_POWERPC_PPCTARGETMACHINE_H #include "PPCInstrInfo.h" #include "PPCSubtarget.h" #include "llvm/IR/DataLayout.h" #include "llvm/Target/TargetMachine.h" #include <optional> namespace llvm { /// Common code between 32-bit and 64-bit PowerPC targets. /// class PPCTargetMachine final : public LLVMTargetMachine { … }; } // end namespace llvm #endif