diff options
author | Adam Nemet <anemet@apple.com> | 2016-06-15 12:26:15 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2016-06-15 12:26:15 +0000 |
commit | 927b54e48add2022bba49adaf126a2cba6819ca2 (patch) | |
tree | 9447bb6e31eb155a94e9dda70ec30d7ab045c14f /llvm/lib | |
parent | b1973be8e21ae511ddc2b09cc6e72a03e4ca05b8 (diff) | |
download | bcm5719-llvm-927b54e48add2022bba49adaf126a2cba6819ca2.tar.gz bcm5719-llvm-927b54e48add2022bba49adaf126a2cba6819ca2.zip |
[LV] Remove more unused functions. NFC
LoopVectorizationLegality::strides_begin/end are also unused.
llvm-svn: 272781
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 77d96481162..2b2467746f1 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -1375,10 +1375,6 @@ public: unsigned getMaxSafeDepDistBytes() { return LAI->getMaxSafeDepDistBytes(); } bool hasStride(Value *V) { return StrideSet.count(V); } - SmallPtrSet<Value *, 8>::iterator strides_begin() { - return StrideSet.begin(); - } - SmallPtrSet<Value *, 8>::iterator strides_end() { return StrideSet.end(); } /// Returns true if the target machine supports masked store operation /// for the given \p DataType and kind of access to \p Ptr. |