[llvm] r276852 - Removed unusued template function declaration that has no definition - fixes MSVC warning.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 27 03:11:06 PDT 2016
Author: rksimon
Date: Wed Jul 27 05:11:05 2016
New Revision: 276852
URL: http://llvm.org/viewvc/llvm-project?rev=276852&view=rev
Log:
Removed unusued template function declaration that has no definition - fixes MSVC warning.
Modified:
llvm/trunk/include/llvm/Analysis/LoopInfo.h
Modified: llvm/trunk/include/llvm/Analysis/LoopInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/LoopInfo.h?rev=276852&r1=276851&r2=276852&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/LoopInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/LoopInfo.h Wed Jul 27 05:11:05 2016
@@ -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>;
More information about the llvm-commits
mailing list