summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/DataStructure
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-09 21:41:44 +0000
committerChris Lattner <sabre@nondot.org>2002-11-09 21:41:44 +0000
commit3e32cd8e8b6ed2e2d164525535a4f91dd3358721 (patch)
tree77b21744edf35f58c0c52b5ecdf9e15f3fe5f0ab /llvm/lib/Analysis/DataStructure
parentd185d2ce9dfd0857228264807f12ad35788aa635 (diff)
downloadbcm5719-llvm-3e32cd8e8b6ed2e2d164525535a4f91dd3358721.tar.gz
bcm5719-llvm-3e32cd8e8b6ed2e2d164525535a4f91dd3358721.zip
Remove obsolete code
llvm-svn: 4665
Diffstat (limited to 'llvm/lib/Analysis/DataStructure')
-rw-r--r--llvm/lib/Analysis/DataStructure/Printer.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Printer.cpp b/llvm/lib/Analysis/DataStructure/Printer.cpp
index 91ae7cabdf2..8d345a93e96 100644
--- a/llvm/lib/Analysis/DataStructure/Printer.cpp
+++ b/llvm/lib/Analysis/DataStructure/Printer.cpp
@@ -203,22 +203,8 @@ void LocalDataStructures::print(std::ostream &O, const Module *M) const {
void BUDataStructures::print(std::ostream &O, const Module *M) const {
printCollection(*this, O, M, "bu.");
-#if 0
- for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
- if (!I->isExternal()) {
- (*getDSGraph(*I).GlobalsGraph)->writeGraphToFile(O, "gg.program");
- break;
- }
-#endif
}
void TDDataStructures::print(std::ostream &O, const Module *M) const {
printCollection(*this, O, M, "td.");
-#if 0
- for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
- if (!I->isExternal()) {
- (*getDSGraph(*I).GlobalsGraph)->writeGraphToFile(O, "gg.program");
- break;
- }
-#endif
}
OpenPOWER on IntegriCloud