[X86][SSE] Fixed description for isSequentialOrUndefInRange. NFC.

llvm-svn: 225202
This commit is contained in:
Simon Pilgrim 2015-01-05 21:09:48 +00:00
parent 28bb02a8c7
commit 71b96b35e1
1 changed files with 1 additions and 1 deletions

View File

@ -3906,7 +3906,7 @@ static bool isUndefOrEqual(int Val, int CmpVal) {
/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
/// from position Pos and ending in Pos+Size, falls within the specified
/// sequential range (L, L+Pos]. or is undef.
/// sequential range (Low, Low+Size]. or is undef.
static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
unsigned Pos, unsigned Size, int Low) {
for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)