llvm-mirror/include/llvm/CodeGen/PeepholeOpts.h
2003-08-14 06:09:32 +00:00

16 lines
434 B
C++

//===-- 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