diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-24 02:39:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-24 02:39:26 +0000 |
commit | e62088fe20e919411c2e7ad633dc6cc22796295e (patch) | |
tree | 3aef730058b56f33b9208294137e40095569e507 /lib/Analysis/LoopDependenceAnalysis.cpp | |
parent | 9655b14b8bc774e29d7523d64620848805e47eb7 (diff) | |
download | external_llvm-e62088fe20e919411c2e7ad633dc6cc22796295e.zip external_llvm-e62088fe20e919411c2e7ad633dc6cc22796295e.tar.gz external_llvm-e62088fe20e919411c2e7ad633dc6cc22796295e.tar.bz2 |
remove a few dead insertion methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79882 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoopDependenceAnalysis.cpp')
-rw-r--r-- | lib/Analysis/LoopDependenceAnalysis.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Analysis/LoopDependenceAnalysis.cpp b/lib/Analysis/LoopDependenceAnalysis.cpp index 4045dd4..32d2266 100644 --- a/lib/Analysis/LoopDependenceAnalysis.cpp +++ b/lib/Analysis/LoopDependenceAnalysis.cpp @@ -350,8 +350,3 @@ void LoopDependenceAnalysis::print(raw_ostream &OS, const Module*) const { // TODO: doc why const_cast is safe PrintLoopInfo(OS, const_cast<LoopDependenceAnalysis*>(this), this->L); } - -void LoopDependenceAnalysis::print(std::ostream &OS, const Module *M) const { - raw_os_ostream os(OS); - print(os, M); -} |