[X86][SSE] Fixed description for isSequentialOrUndefInRange. NFC.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 5 Jan 2015 21:09:48 +0000 (21:09 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 5 Jan 2015 21:09:48 +0000 (21:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225202 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 9c281de49154dad5fcc5b3bfb400a734e83acfc3..e8e3c5e40fdca8ddc67c36daccea493334d5b2a2 100644 (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)