mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-22 12:34:55 +00:00
JitILBase: Make the IRBuilder instance protected
There's no need to make it public.
This commit is contained in:
parent
e924814d62
commit
1516c22a22
1 changed files with 1 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue