2cbc7782f578e607fa3e75d3a3514e7d66f0243f
[oota-llvm.git] / include / llvm / CodeGen / PeepholeOpts.h
1 //===-- llvm/CodeGen/PeepholeOpts.h ----------------------------*- C++ -*--===//
2 //
3 // External interface to peephole optimization pass operating on machine code.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #ifndef LLVM_CODEGEN_PEEPHOLE_OPTS_H
8 #define LLVM_CODEGEN_PEEPHOLE_OPTS_H
9
10 class TargetMachine;
11 class FunctionPass;
12
13 FunctionPass *createPeepholeOptsPass(TargetMachine &Target);
14
15 #endif