aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/LoopInfo.h
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-12-23 22:58:38 +0000
committerDavid Greene <greened@obbligato.org>2009-12-23 22:58:38 +0000
commit63c9463c62fce8cbe02176dfa2d73f375a06f1f2 (patch)
tree2080c9edd3e78933d00a1e03ec55841b067b9d08 /include/llvm/Analysis/LoopInfo.h
parent4850a89b77e7dc677c2b73508f2a4c10386c844f (diff)
downloadexternal_llvm-63c9463c62fce8cbe02176dfa2d73f375a06f1f2.zip
external_llvm-63c9463c62fce8cbe02176dfa2d73f375a06f1f2.tar.gz
external_llvm-63c9463c62fce8cbe02176dfa2d73f375a06f1f2.tar.bz2
Remove dump routine and the associated Debug.h from a header. Patch up
other files to compensate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92075 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/LoopInfo.h')
-rw-r--r--include/llvm/Analysis/LoopInfo.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h
index 7196eb8..060286f 100644
--- a/include/llvm/Analysis/LoopInfo.h
+++ b/include/llvm/Analysis/LoopInfo.h
@@ -37,7 +37,6 @@
#include "llvm/ADT/SmallVector.h"
#include "llvm/Analysis/Dominators.h"
#include "llvm/Support/CFG.h"
-#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
@@ -480,10 +479,6 @@ public:
(*I)->print(OS, Depth+2);
}
- void dump() const {
- print(dbgs());
- }
-
protected:
friend class LoopInfoBase<BlockT, LoopT>;
explicit LoopBase(BlockT *BB) : ParentLoop(0) {