mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-10 19:47:40 +01:00
JitILBase: Make the IRBuilder instance protected
There's no need to make it public.
This commit is contained in:
parent
e924814d62
commit
1516c22a22
@ -15,8 +15,6 @@ class JitILBase : public Jitx86Base
|
||||
public:
|
||||
JitILBase() : code_buffer(32000) {}
|
||||
~JitILBase() {}
|
||||
IREmitter::IRBuilder ibuild;
|
||||
|
||||
virtual void Jit(u32 em_address) = 0;
|
||||
|
||||
virtual const CommonAsmRoutinesBase* GetAsmRoutines() = 0;
|
||||
@ -128,4 +126,5 @@ protected:
|
||||
// The default code buffer. We keep it around to not have to alloc/dealloc a
|
||||
// large chunk of memory for each recompiled block.
|
||||
PPCAnalyst::CodeBuffer code_buffer;
|
||||
IREmitter::IRBuilder ibuild;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user