diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-09 21:41:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-09 21:41:44 +0000 |
commit | 3e32cd8e8b6ed2e2d164525535a4f91dd3358721 (patch) | |
tree | 77b21744edf35f58c0c52b5ecdf9e15f3fe5f0ab /llvm/lib/Analysis/DataStructure | |
parent | d185d2ce9dfd0857228264807f12ad35788aa635 (diff) | |
download | bcm5719-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.cpp | 14 |
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 } |