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 | dd398486cab0cce9f3b7406248c5d333c63e9ddf (patch) | |
tree | f85c538a5de40888cae0061215fbf4b26d324bed /lib/Analysis/DataStructure/Printer.cpp | |
parent | f76e754c2e53b616ae89617ddb302cb04776572c (diff) |
Remove obsolete code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4665 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Printer.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Printer.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index 91ae7cabdf..8d345a93e9 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/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 } |