blob: 42913fdaec3288b116b9c923f1552c37564916ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===-- llvm/CodeGen/PreSelection.h ----------------------------*- C++ -*--===//
//
// External interface to pre-selection pass that specializes LLVM
// code for a target machine.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CODEGEN_PRE_SELECTION_H
#define LLVM_CODEGEN_PRE_SELECTION_H
class TargetMachine;
class Pass;
Pass *createPreSelectionPass(TargetMachine &Target);
#endif
|