mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 07:29:59 +01:00
a64_interface: Remove jit_interface member
This commit is contained in:
parent
46aef36a4f
commit
b26588123e
@ -23,9 +23,8 @@ namespace Dynarmic::A64 {
|
|||||||
using namespace Backend::Arm64;
|
using namespace Backend::Arm64;
|
||||||
|
|
||||||
struct Jit::Impl final {
|
struct Jit::Impl final {
|
||||||
Impl(Jit* jit_interface, A64::UserConfig conf)
|
Impl(Jit*, A64::UserConfig conf)
|
||||||
: jit_interface(jit_interface)
|
: conf(conf)
|
||||||
, conf(conf)
|
|
||||||
, current_address_space(conf)
|
, current_address_space(conf)
|
||||||
, core(conf) {}
|
, core(conf) {}
|
||||||
|
|
||||||
@ -178,7 +177,6 @@ private:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Jit* jit_interface;
|
|
||||||
A64::UserConfig conf;
|
A64::UserConfig conf;
|
||||||
A64JitState current_state{};
|
A64JitState current_state{};
|
||||||
A64AddressSpace current_address_space;
|
A64AddressSpace current_address_space;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user