diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-17 04:24:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-17 04:24:30 +0000 |
commit | e25ab83a5fe238bbcdddefd14e1b65860abb701a (patch) | |
tree | a847800cbcb34436a3a610e8223ab07126f3f878 /lib/Analysis/DataStructure/Printer.cpp | |
parent | 613692c1069fa77f00bf166555118724254783d1 (diff) |
Reenable printing of TD analysis
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4214 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Printer.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Printer.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index aac4c9b466..dade3f750a 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -170,14 +170,13 @@ void BUDataStructures::print(std::ostream &O, const Module *M) const { #endif } -#if 0 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 +} |