mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-28 02:05:00 +01:00
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;
|
||||
|
||||
struct Jit::Impl final {
|
||||
Impl(Jit* jit_interface, A64::UserConfig conf)
|
||||
: jit_interface(jit_interface)
|
||||
, conf(conf)
|
||||
Impl(Jit*, A64::UserConfig conf)
|
||||
: conf(conf)
|
||||
, current_address_space(conf)
|
||||
, core(conf) {}
|
||||
|
||||
|
|
@ -178,7 +177,6 @@ private:
|
|||
}
|
||||
}
|
||||
|
||||
Jit* jit_interface;
|
||||
A64::UserConfig conf;
|
||||
A64JitState current_state{};
|
||||
A64AddressSpace current_address_space;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue