Removed unusued template function declaration that has no definition - fixes MSVC...
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 27 Jul 2016 10:11:05 +0000 (10:11 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 27 Jul 2016 10:11:05 +0000 (10:11 +0000)
llvm-svn: 276852

llvm/include/llvm/Analysis/LoopInfo.h

index 88f7685..2998723 100644 (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>;