Add argument
authorChris Lattner <sabre@nondot.org>
Mon, 30 Jun 2003 03:13:36 +0000 (03:13 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 30 Jun 2003 03:13:36 +0000 (03:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6990 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Transforms/PoolAllocate.h

index c3e1db2d65a5bd1ef8852bbe57e2e30781bd6c2f..efacf2da530aa19b8ecc132b2153d47567d143f1 100644 (file)
@@ -139,7 +139,8 @@ class PoolAllocate : public Pass {
   void CreatePools(Function &F, const std::vector<DSNode*> &NodesToPA,
                    std::map<DSNode*, Value*> &PoolDescriptors);
   
-  void TransformFunctionBody(Function &F, DSGraph &G, PA::FuncInfo &FI);
+  void TransformFunctionBody(Function &F, Function &OldF,
+                             DSGraph &G, PA::FuncInfo &FI);
 };
 
 #endif