commit | bb05f1ee9317fa984519cd8d5079a444d5d5df2c | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Feb 28 16:54:45 2003 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Feb 28 16:54:45 2003 +0000 |
tree | 74f76e76b81aaa525a02b5dede0f5fd52129772e | |
parent | f972cbd98c87a2b288943425c1bc92022a8de5c5 [diff] [blame] |
Add dump method for Loops git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5671 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index ddcbbf4..d7d8a5b 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/lib/Analysis/LoopInfo.cpp
@@ -68,6 +68,10 @@ getSubLoops()[i]->print(OS); } +void Loop::dump() const { + print(std::cerr); +} + //===----------------------------------------------------------------------===// // LoopInfo implementation