//===---- Mips16ISelDAGToDAG.h - A Dag to Dag Inst Selector for Mips ------===// // // 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 // //===----------------------------------------------------------------------===// // // Subclass of MipsDAGToDAGISel specialized for mips16. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_MIPS_MIPS16ISELDAGTODAG_H #define LLVM_LIB_TARGET_MIPS_MIPS16ISELDAGTODAG_H #include "MipsISelDAGToDAG.h" namespace llvm { class Mips16DAGToDAGISel : public MipsDAGToDAGISel { … }; class Mips16DAGToDAGISelLegacy : public MipsDAGToDAGISelLegacy { … }; FunctionPass *createMips16ISelDag(MipsTargetMachine &TM, CodeGenOptLevel OptLevel); } #endif