]> granicus.if.org Git - llvm/commitdiff
Remove unused method in LoopVectorize.cpp.
authorJonas Paulsson <paulsson@linux.vnet.ibm.com>
Mon, 9 Jan 2017 06:13:21 +0000 (06:13 +0000)
committerJonas Paulsson <paulsson@linux.vnet.ibm.com>
Mon, 9 Jan 2017 06:13:21 +0000 (06:13 +0000)
computeInterleaveCount() is not defined/used and is therefore removed.

Review: Davide Italiano

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291423 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Vectorize/LoopVectorize.cpp

index 31daba2248aaed41d1cb9828ef60a9042da964a1..b4244d0e02897ea089b8c289a23baa1d7a4a7b95 100644 (file)
@@ -1879,13 +1879,6 @@ public:
   unsigned selectInterleaveCount(bool OptForSize, unsigned VF,
                                  unsigned LoopCost);
 
-  /// \return The most profitable unroll factor.
-  /// This method finds the best unroll-factor based on register pressure and
-  /// other parameters. VF and LoopCost are the selected vectorization factor
-  /// and the cost of the selected VF.
-  unsigned computeInterleaveCount(bool OptForSize, unsigned VF,
-                                  unsigned LoopCost);
-
   /// \brief A struct that represents some properties of the register usage
   /// of a loop.
   struct RegisterUsage {