diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-04-30 21:04:51 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-04-30 21:04:51 +0000 |
commit | 7fac0ef71cfaeafd91b9520b553d00d91f83a442 (patch) | |
tree | bc0bbd569f0cb71338130082333bcc2f9058e07a /lib/Transforms/Vectorize/SLPVectorizer.cpp | |
parent | 6f4888f259d9442966bac6e3948dfa70fa3a560e (diff) |
Fix a typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Vectorize/SLPVectorizer.cpp')
-rw-r--r-- | lib/Transforms/Vectorize/SLPVectorizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Vectorize/SLPVectorizer.cpp b/lib/Transforms/Vectorize/SLPVectorizer.cpp index 9a4784f420..cc30cc9278 100644 --- a/lib/Transforms/Vectorize/SLPVectorizer.cpp +++ b/lib/Transforms/Vectorize/SLPVectorizer.cpp @@ -221,7 +221,7 @@ bool SLPVectorizer::tryToVectorize(BinaryOperator *V, BoUpSLP &R) { } } - // Try to slip A. + // Try to skip A. if (A && A->hasOneUse()) { BinaryOperator *A0 = dyn_cast<BinaryOperator>(A->getOperand(0)); BinaryOperator *A1 = dyn_cast<BinaryOperator>(A->getOperand(1)); |