Remove 'else' after 'return'. No functional change.

llvm-svn: 186929
This commit is contained in:
Craig Topper 2013-07-23 06:27:36 +00:00
parent ad87dc077c
commit 64a6e4b193
1 changed files with 1 additions and 2 deletions

View File

@ -226,8 +226,7 @@ unsigned AsmWriterInst::MatchesAllButOneOp(const AsmWriterInst &Other)const{
if (Operands[i] != Other.Operands[i]) {
if (MismatchOperand != ~0U) // Already have one mismatch?
return ~1U;
else
MismatchOperand = i;
MismatchOperand = i;
}
}
return MismatchOperand;