2002-09-20 16:33:03 +00:00
|
|
|
//===-- 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;
|
2003-08-14 06:09:32 +00:00
|
|
|
class FunctionPass;
|
2002-09-20 16:33:03 +00:00
|
|
|
|
2003-08-14 06:09:32 +00:00
|
|
|
FunctionPass *createPeepholeOptsPass(TargetMachine &Target);
|
2002-09-20 16:33:03 +00:00
|
|
|
|
|
|
|
#endif
|