aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/PeepholeOpts.h
blob: fc3254dc67b5993c458add109a4f8ffabab52438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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