mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-01 09:18:30 +00:00
Removed set, but unused variables.
Patch by Joe Abbey <jabbey@arxan.com>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142223 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
90b8bcd33a
commit
c378015d1c
@ -1827,7 +1827,6 @@ int ARMAsmParser::tryParseRegister() {
|
||||
Parser.Lex(); // Eat left bracket token.
|
||||
|
||||
const MCExpr *ImmVal;
|
||||
SMLoc ExprLoc = Parser.getTok().getLoc();
|
||||
if (getParser().ParseExpression(ImmVal))
|
||||
return MatchOperand_ParseFail;
|
||||
const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(ImmVal);
|
||||
@ -1976,7 +1975,6 @@ tryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
Parser.Lex(); // Eat left bracket token.
|
||||
|
||||
const MCExpr *ImmVal;
|
||||
SMLoc ExprLoc = Parser.getTok().getLoc();
|
||||
if (getParser().ParseExpression(ImmVal))
|
||||
return MatchOperand_ParseFail;
|
||||
const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(ImmVal);
|
||||
|
@ -1234,16 +1234,6 @@ static DecodeStatus DecodeCopMemInstruction(llvm::MCInst &Inst, unsigned Insn,
|
||||
if (!Check(S, DecodeGPRRegisterClass(Inst, Rn, Address, Decoder)))
|
||||
return MCDisassembler::Fail;
|
||||
|
||||
unsigned P = fieldFromInstruction32(Insn, 24, 1);
|
||||
unsigned W = fieldFromInstruction32(Insn, 21, 1);
|
||||
|
||||
bool writeback = (P == 0) || (W == 1);
|
||||
unsigned idx_mode = 0;
|
||||
if (P && writeback)
|
||||
idx_mode = ARMII::IndexModePre;
|
||||
else if (!P && writeback)
|
||||
idx_mode = ARMII::IndexModePost;
|
||||
|
||||
switch (Inst.getOpcode()) {
|
||||
case ARM::t2LDC2_OFFSET:
|
||||
case ARM::t2LDC2L_OFFSET:
|
||||
|
Loading…
Reference in New Issue
Block a user