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