Remove separate vector of implicit refs from MachineInstr, and
[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 Pass;
12
13 Pass *createPeepholeOptsPass(TargetMachine &Target);
14
15 #endif