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/consecutive-ptr-uniforms.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/consecutive-ptr-uniforms.ll')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/consecutive-ptr-uniforms.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/consecutive-ptr-uniforms.ll b/llvm/test/Transforms/LoopVectorize/consecutive-ptr-uniforms.ll index 88b2aa36b08..b6dc7429201 100644 --- a/llvm/test/Transforms/LoopVectorize/consecutive-ptr-uniforms.ll +++ b/llvm/test/Transforms/LoopVectorize/consecutive-ptr-uniforms.ll @@ -1,6 +1,6 @@ ; REQUIRES: asserts ; RUN: opt < %s -loop-vectorize -force-vector-width=4 -force-vector-interleave=1 -instcombine -debug-only=loop-vectorize -disable-output -print-after=instcombine 2>&1 | FileCheck %s -; RUN: opt < %s -loop-vectorize -force-vector-width=4 -force-vector-interleave=1 -enable-interleaved-mem-accesses -instcombine -debug-only=loop-vectorize -disable-output -print-after=instcombine 2>&1 | FileCheck %s --check-prefix=INTER +; RUN: opt < %s -loop-vectorize -force-vector-width=4 -force-vector-interleave=1 -enable-interleaved-mem-accesses -enable-cond-stores-vec -instcombine -debug-only=loop-vectorize -disable-output -print-after=instcombine 2>&1 | FileCheck %s --check-prefix=INTER target datalayout = "e-m:e-i64:64-i128:128-n32:64-S128" |