forked from OSchip/llvm-project
[RISCV] Remove fix introduced by r369573, superseded by r369580
llvm-svn: 369590
This commit is contained in:
parent
49ac7ece16
commit
f7cdff4ffd
|
@ -306,7 +306,6 @@ static DecodeStatus decodeRVCInstrSImm(MCInst &Inst, unsigned Insn,
|
|||
DecodeStatus Result = decodeSImmOperand<6>(Inst, SImm6, Address, Decoder);
|
||||
(void)Result;
|
||||
assert(Result == MCDisassembler::Success && "Invalid immediate");
|
||||
(void)SImm6;
|
||||
return MCDisassembler::Success;
|
||||
}
|
||||
|
||||
|
@ -319,7 +318,6 @@ static DecodeStatus decodeRVCInstrRdSImm(MCInst &Inst, unsigned Insn,
|
|||
DecodeStatus Result = decodeSImmOperand<6>(Inst, SImm6, Address, Decoder);
|
||||
(void)Result;
|
||||
assert(Result == MCDisassembler::Success && "Invalid immediate");
|
||||
(void)SImm6;
|
||||
return MCDisassembler::Success;
|
||||
}
|
||||
|
||||
|
@ -333,7 +331,6 @@ static DecodeStatus decodeRVCInstrRdRs1UImm(MCInst &Inst, unsigned Insn,
|
|||
DecodeStatus Result = decodeUImmOperand<6>(Inst, UImm6, Address, Decoder);
|
||||
(void)Result;
|
||||
assert(Result == MCDisassembler::Success && "Invalid immediate");
|
||||
(void)UImm6;
|
||||
return MCDisassembler::Success;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue