mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Peephole optimization pass on final machine code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3863 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
12520cdab4
commit
65ce103d8d
15
include/llvm/CodeGen/PeepholeOpts.h
Normal file
15
include/llvm/CodeGen/PeepholeOpts.h
Normal 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
|
Loading…
Reference in New Issue
Block a user