mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Fix a really bad typo in my last commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230922 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
008dd56706
commit
bd06347b1a
@ -135,8 +135,10 @@ namespace llvm {
|
||||
|
||||
/// equals - Check for element-wise equality.
|
||||
bool equals(ArrayRef RHS) const {
|
||||
if (Length != RHS.Length || Length == 0)
|
||||
if (Length != RHS.Length)
|
||||
return false;
|
||||
if (Length == 0)
|
||||
return true;
|
||||
return std::equal(begin(), end(), RHS.begin());
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user