mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Fix comment!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137521 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
91a44dd9cc
commit
4002d7e1e6
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user