aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-24 20:13:20 +0000
committerChris Lattner <sabre@nondot.org>2003-01-24 20:13:20 +0000
commit0ea3e6dc4162d1af9f22ca41d14799b834920eb0 (patch)
treea4819c09376dd475071360cf4dd4e8c3b81bcfb2 /lib
parente7113ad6c6d9341b33edad2caa1f1db2a2598237 (diff)
downloadexternal_llvm-0ea3e6dc4162d1af9f22ca41d14799b834920eb0.zip
external_llvm-0ea3e6dc4162d1af9f22ca41d14799b834920eb0.tar.gz
external_llvm-0ea3e6dc4162d1af9f22ca41d14799b834920eb0.tar.bz2
Disable construction of pool allocator
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/IPO/OldPoolAllocate.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Transforms/IPO/OldPoolAllocate.cpp b/lib/Transforms/IPO/OldPoolAllocate.cpp
index 4439052..bf86403 100644
--- a/lib/Transforms/IPO/OldPoolAllocate.cpp
+++ b/lib/Transforms/IPO/OldPoolAllocate.cpp
@@ -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