From e42a84f64fc93e984650f3af5ab58dd6ba68b129 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 28 Oct 2002 01:11:58 +0000 Subject: [PATCH] Add prototypes for creation/destruction passes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4309 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineFunction.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index 141838f6003..46f0e54c951 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -18,7 +18,10 @@ class Function; class Constant; class Type; class TargetMachine; +class Pass; +Pass *createMachineCodeConstructionPass(TargetMachine &Target); +Pass *createMachineCodeDestructionPass(); class MachineFunction : private Annotation { hash_set constantsForConstPool;