[mips] Remove trivial header for the Mips16HardFloat pass. NFC.
[oota-llvm.git] / lib / Target / Mips / MipsModuleISelDAGToDAG.h
1 //===---- MipsModuleISelDAGToDAG.h -  Change Subtarget             --------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines a pass used to change the subtarget for the
11 // Mips Instruction selector.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_LIB_TARGET_MIPS_MIPSMODULEISELDAGTODAG_H
16 #define LLVM_LIB_TARGET_MIPS_MIPSMODULEISELDAGTODAG_H
17
18 //===----------------------------------------------------------------------===//
19 // Instruction Selector Implementation
20 //===----------------------------------------------------------------------===//
21
22 namespace llvm {
23 class FunctionPass;
24 class MipsTargetMachine;
25
26 /// createMipsISelDag - This pass converts a legalized DAG into a
27 /// MIPS-specific DAG, ready for instruction scheduling.
28 FunctionPass *createMipsModuleISelDag(MipsTargetMachine &TM);
29 }
30
31 #endif