arm: do not need to initialize local variable opcode in DecodeRegListOperand()

This commit is contained in:
Nguyen Anh Quynh 2014-07-31 21:23:51 +08:00
parent 0c235e15ab
commit 590f23af54

View File

@ -1231,7 +1231,7 @@ static DecodeStatus DecodeRegListOperand(MCInst *Inst, unsigned Val,
{
unsigned i;
DecodeStatus S = MCDisassembler_Success;
unsigned opcode = 0;
unsigned opcode;
bool NeedDisjointWriteback = false;
unsigned WritebackReg = 0;