forked from OSchip/llvm-project
parent
d185d2ce9d
commit
3e32cd8e8b
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue