From: Michael Zolotukhin Date: Fri, 9 Jan 2015 22:15:06 +0000 (+0000) Subject: Update comment. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d9ade185b9423d954cede8237e18b7d1c9455102;p=platform%2Fupstream%2Fllvm.git Update comment. llvm-svn: 225553 --- diff --git a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp index db42251..9281bcb 100644 --- a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp +++ b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp @@ -1031,8 +1031,8 @@ void BoUpSLP::buildTree_rec(ArrayRef VL, unsigned Depth) { } } - // If any of the scalars appears in the table OR it is marked as a value that - // needs to stat scalar then we need to gather the scalars. + // If any of the scalars is marked as a value that needs to stay scalar then + // we need to gather the scalars. for (unsigned i = 0, e = VL.size(); i != e; ++i) { if (MustGather.count(VL[i])) { DEBUG(dbgs() << "SLP: Gathering due to gathered scalar.\n");