summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-10 22:36:47 +0000
committerChris Lattner <sabre@nondot.org>2002-07-10 22:36:47 +0000
commit87d180e7c603cb5e7d9c6570fe992cc82d9db346 (patch)
tree4494431c6ec7a80125dce5fa7ea3f8957e10f324 /llvm/lib/Transforms
parent3e35cef18662c2728ba1cc48bb3afe5e195237af (diff)
downloadbcm5719-llvm-87d180e7c603cb5e7d9c6570fe992cc82d9db346.tar.gz
bcm5719-llvm-87d180e7c603cb5e7d9c6570fe992cc82d9db346.zip
Disable pool allocation stuff until data structure analysis is sorted back out
llvm-svn: 2869
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/IPO/OldPoolAllocate.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/OldPoolAllocate.cpp b/llvm/lib/Transforms/IPO/OldPoolAllocate.cpp
index bbd9d1b9f04..50f21e23978 100644
--- a/llvm/lib/Transforms/IPO/OldPoolAllocate.cpp
+++ b/llvm/lib/Transforms/IPO/OldPoolAllocate.cpp
@@ -30,6 +30,8 @@ using std::map;
using std::string;
using std::set;
+#if 0
+
// DEBUG_CREATE_POOLS - Enable this to turn on debug output for the pool
// creation phase in the top level function of a transformed data structure.
//
@@ -1744,9 +1746,12 @@ bool PoolAllocate::run(Module &M) {
DS = 0;
return false;
}
-
+#endif
// createPoolAllocatePass - Global function to access the functionality of this
// pass...
//
-Pass *createPoolAllocatePass() { return new PoolAllocate(); }
+Pass *createPoolAllocatePass() {
+ assert(0 && "Pool allocator disabled!");
+ //return new PoolAllocate();
+}
OpenPOWER on IntegriCloud