diff options
| author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-08-12 21:54:42 +0000 |
|---|---|---|
| committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-08-12 21:54:42 +0000 |
| commit | c53dd2ac01eb3044da996ad5b8d30ef85a18cda5 (patch) | |
| tree | 151cee389db1be756d73232e45567512ae9ccee4 /llvm/lib/Target/X86/X86ISelLowering.cpp | |
| parent | c13f05c9785cd804400e185b026ac626ba892c63 (diff) | |
| download | bcm5719-llvm-c53dd2ac01eb3044da996ad5b8d30ef85a18cda5.tar.gz bcm5719-llvm-c53dd2ac01eb3044da996ad5b8d30ef85a18cda5.zip | |
Fix comment!
llvm-svn: 137521
Diffstat (limited to 'llvm/lib/Target/X86/X86ISelLowering.cpp')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 4c83a728a55..1ac5c2a8623 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -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) |

