Factory methods for FunctionPasses now return type FunctionPass *.
[oota-llvm.git] / include / llvm / CodeGen / PreSelection.h
1 //===-- llvm/CodeGen/PreSelection.h ----------------------------*- C++ -*--===//
2 //
3 // External interface to pre-selection pass that specializes LLVM
4 // code for a target machine.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_CODEGEN_PRE_SELECTION_H
9 #define LLVM_CODEGEN_PRE_SELECTION_H
10
11 class TargetMachine;
12 class Pass;
13
14 Pass *createPreSelectionPass(TargetMachine &Target);
15
16 #endif