mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 07:29:59 +01:00
translate_arm: Remove unused method ArmTranslatorVisitor::LinkToNextInstruction
This commit is contained in:
parent
f75acd6cfb
commit
792f2bfd94
@ -119,12 +119,6 @@ bool ArmTranslatorVisitor::UnpredictableInstruction() {
|
|||||||
return false;
|
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) {
|
IR::IREmitter::ResultAndCarry ArmTranslatorVisitor::EmitImmShift(IR::Value value, ShiftType type, Imm5 imm5, IR::Value carry_in) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case ShiftType::LSL:
|
case ShiftType::LSL:
|
||||||
|
|||||||
@ -36,7 +36,6 @@ struct ArmTranslatorVisitor final {
|
|||||||
bool ConditionPassed(Cond cond);
|
bool ConditionPassed(Cond cond);
|
||||||
bool InterpretThisInstruction();
|
bool InterpretThisInstruction();
|
||||||
bool UnpredictableInstruction();
|
bool UnpredictableInstruction();
|
||||||
bool LinkToNextInstruction();
|
|
||||||
|
|
||||||
static u32 rotr(u32 x, int shift) {
|
static u32 rotr(u32 x, int shift) {
|
||||||
shift &= 31;
|
shift &= 31;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user