From: Chris Lattner Date: Mon, 28 Oct 2002 01:11:58 +0000 (+0000) Subject: Add prototypes for creation/destruction passes X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e42a84f64fc93e984650f3af5ab58dd6ba68b129;p=oota-llvm.git Add prototypes for creation/destruction passes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4309 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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;