From 65ce103d8dd619f16d910937884f31c2eaaec5cf Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Fri, 20 Sep 2002 16:33:03 +0000 Subject: [PATCH] Peephole optimization pass on final machine code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3863 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/PeepholeOpts.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/llvm/CodeGen/PeepholeOpts.h diff --git a/include/llvm/CodeGen/PeepholeOpts.h b/include/llvm/CodeGen/PeepholeOpts.h new file mode 100644 index 00000000000..fc3254dc67b --- /dev/null +++ b/include/llvm/CodeGen/PeepholeOpts.h @@ -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 -- 2.34.1