mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-06 19:31:13 +00:00
4651096037
llvm-svn: 7839
16 lines
434 B
C++
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
|