Delete obsolete function mergeUseListsImpl
authorJonas Hahnfeld <hahnjo@hahnjo.de>
Mon, 27 Nov 2017 17:55:47 +0000 (17:55 +0000)
committerJonas Hahnfeld <hahnjo@hahnjo.de>
Mon, 27 Nov 2017 17:55:47 +0000 (17:55 +0000)
mergeUseLists is implemented iteratively since r243590.

Differential Revision: https://reviews.llvm.org/D40491

llvm-svn: 319061

llvm/include/llvm/IR/Value.h

index 60a64c8..12a4877 100644 (file)
@@ -651,12 +651,6 @@ private:
     return Merged;
   }
 
-  /// \brief Tail-recursive helper for \a mergeUseLists().
-  ///
-  /// \param[out] Next the first element in the list.
-  template <class Compare>
-  static void mergeUseListsImpl(Use *L, Use *R, Use **Next, Compare Cmp);
-
 protected:
   unsigned short getSubclassDataFromValue() const { return SubclassData; }
   void setValueSubclassData(unsigned short D) { SubclassData = D; }