diff options
author | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2017-01-09 06:13:21 +0000 |
---|---|---|
committer | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2017-01-09 06:13:21 +0000 |
commit | cf7543c44b314224fc893ff339b8fdc44701df14 (patch) | |
tree | 828648fdcb80303e6735e37898b2228c2629ab37 /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | 8af74a4a205e4e183dd17cb494ab8f1a80f72db5 (diff) | |
download | bcm5719-llvm-cf7543c44b314224fc893ff339b8fdc44701df14.tar.gz bcm5719-llvm-cf7543c44b314224fc893ff339b8fdc44701df14.zip |
Remove unused method in LoopVectorize.cpp.
computeInterleaveCount() is not defined/used and is therefore removed.
Review: Davide Italiano
llvm-svn: 291423
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 31daba2248a..b4244d0e028 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -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 { |