mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
43881f46b0
llvm-svn: 3863
16 lines
418 B
C++
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
|