forked from OSchip/llvm-project
Fixing a buildbot failure:unused function.
llvm-svn: 186403
This commit is contained in:
parent
655d96ab3b
commit
a73970b662
|
@ -183,11 +183,6 @@ static DecodeStatus DecodeSimm16(MCInst &Inst,
|
|||
uint64_t Address,
|
||||
const void *Decoder);
|
||||
|
||||
static DecodeStatus DecodeCondCode(MCInst &Inst,
|
||||
unsigned Insn,
|
||||
uint64_t Address,
|
||||
const void *Decoder);
|
||||
|
||||
static DecodeStatus DecodeInsSize(MCInst &Inst,
|
||||
unsigned Insn,
|
||||
uint64_t Address,
|
||||
|
@ -464,15 +459,6 @@ static DecodeStatus DecodeHWRegsRegisterClass(MCInst &Inst,
|
|||
return MCDisassembler::Success;
|
||||
}
|
||||
|
||||
static DecodeStatus DecodeCondCode(MCInst &Inst,
|
||||
unsigned Insn,
|
||||
uint64_t Address,
|
||||
const void *Decoder) {
|
||||
int CondCode = Insn & 0xf;
|
||||
Inst.addOperand(MCOperand::CreateImm(CondCode));
|
||||
return MCDisassembler::Success;
|
||||
}
|
||||
|
||||
static DecodeStatus DecodeAFGR64RegisterClass(MCInst &Inst,
|
||||
unsigned RegNo,
|
||||
uint64_t Address,
|
||||
|
|
Loading…
Reference in New Issue