diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-07-27 10:11:05 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-07-27 10:11:05 +0000 |
| commit | 470b81ca69342a4174bbc4d7c748059abe557b72 (patch) | |
| tree | 1fcc3dfa1191377e458a3bdd6ca4ccd55afa9871 | |
| parent | 7921e833d559b253230ff093873f43530f6c43cc (diff) | |
| download | bcm5719-llvm-470b81ca69342a4174bbc4d7c748059abe557b72.tar.gz bcm5719-llvm-470b81ca69342a4174bbc4d7c748059abe557b72.zip | |
Removed unusued template function declaration that has no definition - fixes MSVC warning.
llvm-svn: 276852
| -rw-r--r-- | llvm/include/llvm/Analysis/LoopInfo.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/include/llvm/Analysis/LoopInfo.h b/llvm/include/llvm/Analysis/LoopInfo.h index 88f7685df04..29987232329 100644 --- a/llvm/include/llvm/Analysis/LoopInfo.h +++ b/llvm/include/llvm/Analysis/LoopInfo.h @@ -342,10 +342,8 @@ public: /// Verify loop structure of this loop and all nested loops. void verifyLoopNest(DenseSet<const LoopT*> *Loops) const; - void print(raw_ostream &OS, unsigned Depth = 0, bool Verbose = false) const; - /// Print loop with all the BBs inside it. - void printVerbose(raw_ostream &OS, unsigned Depth = 0) const; + void print(raw_ostream &OS, unsigned Depth = 0, bool Verbose = false) const; protected: friend class LoopInfoBase<BlockT, LoopT>; |

