Fix comment!
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>
Fri, 12 Aug 2011 21:54:42 +0000 (21:54 +0000)
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>
Fri, 12 Aug 2011 21:54:42 +0000 (21:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137521 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 4c83a728a55b938db1b9a1121d8e5040dcf3cfa9..1ac5c2a8623a12d9919d383a16e42dae62d6e628 100644 (file)
@@ -3035,9 +3035,9 @@ static bool isUndefOrEqual(int Val, int CmpVal) {
   return false;
 }
 
-/// isUndefOrInRange - Return true if every element in Mask, begining from
-/// position Pos and ending in Pos+Size, falls within the specified sequential
-/// range (L, L+Pos]. or is undef.
+/// isSequentialOrUndefInRange - Return true if every element in Mask, begining
+/// from position Pos and ending in Pos+Size, falls within the specified
+/// sequential range (L, L+Pos]. or is undef.
 static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
                                        int Pos, int Size, int Low) {
   for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)