Removed unusued template function declaration that has no definition - fixes MSVC warning.

llvm-svn: 276852
This commit is contained in:
Simon Pilgrim 2016-07-27 10:11:05 +00:00
parent 7921e833d5
commit 470b81ca69
1 changed files with 1 additions and 3 deletions

View File

@ -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>;