translate_arm: Remove unused method ArmTranslatorVisitor::LinkToNextInstruction
This commit is contained in:
parent
f75acd6cfb
commit
792f2bfd94
2 changed files with 0 additions and 7 deletions
|
@ -119,12 +119,6 @@ bool ArmTranslatorVisitor::UnpredictableInstruction() {
|
|||
return false;
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::LinkToNextInstruction() {
|
||||
auto next_location = ir.current_location.AdvancePC(4);
|
||||
ir.SetTerm(IR::Term::LinkBlock{next_location});
|
||||
return false;
|
||||
}
|
||||
|
||||
IR::IREmitter::ResultAndCarry ArmTranslatorVisitor::EmitImmShift(IR::Value value, ShiftType type, Imm5 imm5, IR::Value carry_in) {
|
||||
switch (type) {
|
||||
case ShiftType::LSL:
|
||||
|
|
|
@ -36,7 +36,6 @@ struct ArmTranslatorVisitor final {
|
|||
bool ConditionPassed(Cond cond);
|
||||
bool InterpretThisInstruction();
|
||||
bool UnpredictableInstruction();
|
||||
bool LinkToNextInstruction();
|
||||
|
||||
static u32 rotr(u32 x, int shift) {
|
||||
shift &= 31;
|
||||
|
|
Loading…
Reference in a new issue