mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
Silence sign compare warning. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233502 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
155328790b
commit
19d058836a
@ -168,7 +168,8 @@ bool InlineAsm::ConstraintInfo::Parse(StringRef Str,
|
||||
scInfo.MatchingInput = ConstraintsSoFar.size();
|
||||
} else {
|
||||
if (ConstraintsSoFar[N].hasMatchingInput() &&
|
||||
ConstraintsSoFar[N].MatchingInput != ConstraintsSoFar.size())
|
||||
(size_t)ConstraintsSoFar[N].MatchingInput !=
|
||||
ConstraintsSoFar.size())
|
||||
return true;
|
||||
// Note that operand #n has a matching input.
|
||||
ConstraintsSoFar[N].MatchingInput = ConstraintsSoFar.size();
|
||||
|
Loading…
Reference in New Issue
Block a user