forked from OSchip/llvm-project
Fix an apparent typo that made GCC complain
llvm-svn: 129160
This commit is contained in:
parent
0b37e79891
commit
4e1796e8d1
|
@ -956,7 +956,7 @@ static bool BadRegsDPFrm(unsigned Opcode, uint32_t insn) {
|
|||
switch (Opcode) {
|
||||
default:
|
||||
// Did we miss an opcode?
|
||||
if (decodeRd(insn) == 15 | decodeRn(insn) == 15 || decodeRm(insn) == 15) {
|
||||
if (decodeRd(insn) == 15 || decodeRn(insn) == 15 || decodeRm(insn) == 15) {
|
||||
DEBUG(errs() << "DPFrm with bad reg specifier(s)\n");
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue