1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/include/llvm/CodeGen/PeepholeOpts.h
2002-09-20 16:33:03 +00:00

16 lines
418 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 Pass;
Pass *createPeepholeOptsPass(TargetMachine &Target);
#endif