Peephole optimization pass on final machine code.

llvm-svn: 3863
This commit is contained in:
Vikram S. Adve 2002-09-20 16:33:03 +00:00
parent 2b35b84a5d
commit 43881f46b0

View File

@ -0,0 +1,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 Pass;
Pass *createPeepholeOptsPass(TargetMachine &Target);
#endif