summaryrefslogtreecommitdiff
path: root/test/Transforms/LoopVectorize/same-base-access.ll
Commit message (Collapse)AuthorAge
* Remove the -licm pass from the loop vectorizer test because the loop ↵Nadav Rotem2013-01-09
| | | | | | vectorizer does it now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171930 91177308-0d34-0410-b5e6-96231b3b80d8
* Force a fixed unroll count on the target independent tests.Nadav Rotem2013-01-05
| | | | | | | | This should fix clang-native-arm-cortex-a9. Thanks Renato. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171582 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix a bug in the code that checks if we can vectorize loops while using dynamicNadav Rotem2012-12-21
memory bound checks. Before the fix we were able to vectorize this loop from the Livermore Loops benchmark: for ( k=1 ; k<n ; k++ ) x[k] = x[k-1] + y[k]; git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170811 91177308-0d34-0410-b5e6-96231b3b80d8