1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Add dump method for Loops

llvm-svn: 5671
This commit is contained in:
Chris Lattner 2003-02-28 16:54:45 +00:00
parent 6046dda16e
commit 77840ef407

View File

@ -68,6 +68,10 @@ void Loop::print(std::ostream &OS) const {
getSubLoops()[i]->print(OS);
}
void Loop::dump() const {
print(std::cerr);
}
//===----------------------------------------------------------------------===//
// LoopInfo implementation