diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2016-12-16 11:31:39 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2016-12-16 11:31:39 +0000 |
commit | 48b4e614d84ce0c1b18dcaa38de529d433d622cc (patch) | |
tree | 174e6a6bd6e11caa380f579d10e81c2532a25e78 /llvm/test/Transforms/LoopVectorize/conditional-assignment.ll | |
parent | 3c8b8c98b00437a9f93f09db200892d33f91973b (diff) | |
download | bcm5719-llvm-48b4e614d84ce0c1b18dcaa38de529d433d622cc.tar.gz bcm5719-llvm-48b4e614d84ce0c1b18dcaa38de529d433d622cc.zip |
Revert r289863: [LV] Enable vectorization of loops with conditional
stores by default
This uncovers a crasher in the loop vectorizer on PPC when building the
Python runtime. I'll send the testcase to the review thread for the
original commit.
llvm-svn: 289934
Diffstat (limited to 'llvm/test/Transforms/LoopVectorize/conditional-assignment.ll')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/conditional-assignment.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/conditional-assignment.ll b/llvm/test/Transforms/LoopVectorize/conditional-assignment.ll index 25d6111d65a..2222a26f429 100644 --- a/llvm/test/Transforms/LoopVectorize/conditional-assignment.ll +++ b/llvm/test/Transforms/LoopVectorize/conditional-assignment.ll @@ -1,5 +1,5 @@ -; RUN: opt < %s -enable-cond-stores-vec=false -loop-vectorize -S -pass-remarks-missed='loop-vectorize' -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck %s -; RUN: opt < %s -enable-cond-stores-vec=false -passes=loop-vectorize -S -pass-remarks-missed='loop-vectorize' -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck %s +; RUN: opt < %s -loop-vectorize -S -pass-remarks-missed='loop-vectorize' -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck %s +; RUN: opt < %s -passes=loop-vectorize -S -pass-remarks-missed='loop-vectorize' -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck %s ; CHECK: remark: source.c:2:8: loop not vectorized: store that is conditionally executed prevents vectorization |