a64_interface: Remove jit_interface member
This commit is contained in:
parent
46aef36a4f
commit
b26588123e
1 changed files with 2 additions and 4 deletions
|
@ -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…
Reference in a new issue