projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad87dc0
)
Remove 'else' after 'return'. No functional change.
author
Craig Topper
<craig.topper@gmail.com>
Tue, 23 Jul 2013 06:27:36 +0000
(06:27 +0000)
committer
Craig Topper
<craig.topper@gmail.com>
Tue, 23 Jul 2013 06:27:36 +0000
(06:27 +0000)
llvm-svn: 186929
llvm/utils/TableGen/AsmWriterInst.cpp
patch
|
blob
|
history
diff --git
a/llvm/utils/TableGen/AsmWriterInst.cpp
b/llvm/utils/TableGen/AsmWriterInst.cpp
index
68fd559
..
1c2004f
100644
(file)
--- a/
llvm/utils/TableGen/AsmWriterInst.cpp
+++ b/
llvm/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;