Fix an apparent typo that made GCC complain

llvm-svn: 129160
This commit is contained in:
Matt Beaumont-Gay 2011-04-08 21:59:49 +00:00
parent 0b37e79891
commit 4e1796e8d1
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}