diff options
author | Erik Eckstein <eeckstein@apple.com> | 2014-08-28 07:04:02 +0000 |
---|---|---|
committer | Erik Eckstein <eeckstein@apple.com> | 2014-08-28 07:04:02 +0000 |
commit | 8354cfaf95cc7a6d3e5da821635f1e1242565097 (patch) | |
tree | 49c21b1d97fe2a6d1e6e870ccdd004b0b3f50131 /llvm/lib/Transforms | |
parent | 16d08fe521a56dae59feceb70ccb39ca6a3df4a7 (diff) | |
download | bcm5719-llvm-8354cfaf95cc7a6d3e5da821635f1e1242565097.tar.gz bcm5719-llvm-8354cfaf95cc7a6d3e5da821635f1e1242565097.zip |
Fix: SLPVectorizer tried to move an instruction which was replaced by a vector instruction.
For a detailed description of the problem see the comment in the test file.
The problematic moveBefore() calls are not required anymore because the new
scheduling algorithm ensures a correct ordering anyway.
llvm-svn: 216656
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp index c0d44f179bc..bbf3e03854b 100644 --- a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp +++ b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp @@ -3112,11 +3112,9 @@ bool SLPVectorizer::tryToVectorize(BinaryOperator *V, BoUpSLP &R) { BinaryOperator *B0 = dyn_cast<BinaryOperator>(B->getOperand(0)); BinaryOperator *B1 = dyn_cast<BinaryOperator>(B->getOperand(1)); if (tryToVectorizePair(A, B0, R)) { - B->moveBefore(V); return true; } if (tryToVectorizePair(A, B1, R)) { - B->moveBefore(V); return true; } } @@ -3126,11 +3124,9 @@ bool SLPVectorizer::tryToVectorize(BinaryOperator *V, BoUpSLP &R) { BinaryOperator *A0 = dyn_cast<BinaryOperator>(A->getOperand(0)); BinaryOperator *A1 = dyn_cast<BinaryOperator>(A->getOperand(1)); if (tryToVectorizePair(A0, B, R)) { - A->moveBefore(V); return true; } if (tryToVectorizePair(A1, B, R)) { - A->moveBefore(V); return true; } } |