forked from OSchip/llvm-project
[X86][Disassembler] Remove TYPE_BNDR from translateImmediate.
I've check the disassembler tables and this shouldn't be reachable. Which is good since if it was reachable there should have been a 'return' after the addOperand line. llvm-svn: 336066
This commit is contained in:
parent
279a1a39ad
commit
4d8ec92fb0
|
@ -661,8 +661,6 @@ static void translateImmediate(MCInst &mcInst, uint64_t immediate,
|
|||
case TYPE_ZMM:
|
||||
mcInst.addOperand(MCOperand::createReg(X86::ZMM0 + (immediate >> 4)));
|
||||
return;
|
||||
case TYPE_BNDR:
|
||||
mcInst.addOperand(MCOperand::createReg(X86::BND0 + (immediate >> 4)));
|
||||
default:
|
||||
// operand is 64 bits wide. Do nothing.
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue