From: Craig Topper Date: Tue, 23 Jul 2013 06:27:36 +0000 (+0000) Subject: Remove 'else' after 'return'. No functional change. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=349d6a70a1f17ecfd0695fae1b596cafdd15762e;p=oota-llvm.git Remove 'else' after 'return'. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186929 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/AsmWriterInst.cpp b/utils/TableGen/AsmWriterInst.cpp index 68fd559492a..1c2004f6ee5 100644 --- a/utils/TableGen/AsmWriterInst.cpp +++ b/utils/TableGen/AsmWriterInst.cpp @@ -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;