mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-19 03:38:26 +00:00
Silence sign compare warning. NFC.
llvm-svn: 233502
This commit is contained in:
parent
40ebf4f0c7
commit
42941760b3
@ -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…
x
Reference in New Issue
Block a user