Disable construction of pool allocator
authorChris Lattner <sabre@nondot.org>
Fri, 24 Jan 2003 20:13:20 +0000 (20:13 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 24 Jan 2003 20:13:20 +0000 (20:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5422 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/OldPoolAllocate.cpp

index 4439052bd98aa8e7b9fb43bc43ed505fa8463ef6..bf86403d86b7256b00deba0f6808aa62cb542265 100644 (file)
@@ -6,9 +6,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#if 1
-#include "llvm/Pass.h"
-#else
+#if 0
 #include "llvm/Transforms/IPO.h"
 #include "llvm/Transforms/Utils/Cloning.h"
 #include "llvm/Analysis/DataStructure.h"
@@ -1749,7 +1747,6 @@ bool PoolAllocate::run(Module &M) {
   DS = 0;
   return false;
 }
-#endif
 
 // createPoolAllocatePass - Global function to access the functionality of this
 // pass...
@@ -1759,3 +1756,4 @@ Pass *createPoolAllocatePass() {
   return 0;
   //return new PoolAllocate(); 
 }
+#endif