//===- Mips16InstrInfo.h - Mips16 Instruction Information -------*- 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 contains the Mips16 implementation of the TargetInstrInfo class. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_MIPS_MIPS16INSTRINFO_H #define LLVM_LIB_TARGET_MIPS_MIPS16INSTRINFO_H #include "Mips16RegisterInfo.h" #include "MipsInstrInfo.h" #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/Support/MathExtras.h" #include <cstdint> namespace llvm { class MCInstrDesc; class MipsSubtarget; class Mips16InstrInfo : public MipsInstrInfo { … }; } // end namespace llvm #endif // LLVM_LIB_TARGET_MIPS_MIPS16INSTRINFO_H