[llvm-commits] [see] CVS: llvm-poolalloc/lib/DSA/DataStructure.cpp
John Criswell
criswell at cs.uiuc.edu
Tue Mar 6 14:44:55 PST 2007
Changes in directory llvm-poolalloc/lib/DSA:
DataStructure.cpp updated: 1.248.2.4.2.1 -> 1.248.2.4.2.2
---
Log message:
Disabled debugging output.
---
Diffs of the changes: (+2 -0)
DataStructure.cpp | 2 ++
1 files changed, 2 insertions(+)
Index: llvm-poolalloc/lib/DSA/DataStructure.cpp
diff -u llvm-poolalloc/lib/DSA/DataStructure.cpp:1.248.2.4.2.1 llvm-poolalloc/lib/DSA/DataStructure.cpp:1.248.2.4.2.2
--- llvm-poolalloc/lib/DSA/DataStructure.cpp:1.248.2.4.2.1 Wed Feb 28 11:35:32 2007
+++ llvm-poolalloc/lib/DSA/DataStructure.cpp Tue Mar 6 16:44:38 2007
@@ -1402,10 +1402,12 @@
Value *dest = getMetaPoolValue();
Value *curr = other->getMetaPoolValue();
if (dest != curr) {
+#if 0
std::cerr << "LLVA: Merging metapools: " << this->Creator->getParent()->getParent()->getName() << " : " << other->Creator->getParent()->getParent()->getName() << "\n"
<< "LLVA: " << *(this->Creator) << "\n"
<< "LLVA: " << *(other->Creator) << "\n";
curr->replaceAllUsesWith(dest);
+#endif
}
//merge the hash sets in to other
More information about the llvm-commits
mailing list