diff options
author | James Molloy <james.molloy@arm.com> | 2015-11-09 14:32:05 +0000 |
---|---|---|
committer | James Molloy <james.molloy@arm.com> | 2015-11-09 14:32:05 +0000 |
commit | 45f67d52d0e7b7aced3e125dca2f128021c8a073 (patch) | |
tree | 26fd161e66e58f068adf331ab22a7cf697116d7a /llvm/test/Transforms | |
parent | dab6b25e38011832b40dcd96b32f7f3959068dd9 (diff) | |
download | bcm5719-llvm-45f67d52d0e7b7aced3e125dca2f128021c8a073.tar.gz bcm5719-llvm-45f67d52d0e7b7aced3e125dca2f128021c8a073.zip |
[LoopVectorize] Address post-commit feedback on r250032
Implemented as many of Michael's suggestions as were possible:
* clang-format the added code while it is still fresh.
* tried to change Value* to Instruction* in many places in computeMinimumValueSizes - unfortunately there are several places where Constants need to be handled so this wasn't possible.
* Reduce the pass list on loop-vectorization-factors.ll.
* Fix a bug where we were querying MinBWs for I->getOperand(0) but using MinBWs[I].
llvm-svn: 252469
Diffstat (limited to 'llvm/test/Transforms')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/AArch64/loop-vectorization-factors.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/AArch64/loop-vectorization-factors.ll b/llvm/test/Transforms/LoopVectorize/AArch64/loop-vectorization-factors.ll index f5b6a643c07..eee31049180 100644 --- a/llvm/test/Transforms/LoopVectorize/AArch64/loop-vectorization-factors.ll +++ b/llvm/test/Transforms/LoopVectorize/AArch64/loop-vectorization-factors.ll @@ -1,4 +1,4 @@ -; RUN: opt -S < %s -basicaa -loop-vectorize -simplifycfg -instsimplify -instcombine -licm -force-vector-interleave=1 2>&1 | FileCheck %s +; RUN: opt -S < %s -basicaa -loop-vectorize -force-vector-interleave=1 2>&1 | FileCheck %s target datalayout = "e-m:e-i64:64-i128:128-n32:64-S128" target triple = "aarch64" |