mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:39:17 +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:
|
public:
|
||||||
JitILBase() : code_buffer(32000) {}
|
JitILBase() : code_buffer(32000) {}
|
||||||
~JitILBase() {}
|
~JitILBase() {}
|
||||||
IREmitter::IRBuilder ibuild;
|
|
||||||
|
|
||||||
virtual void Jit(u32 em_address) = 0;
|
virtual void Jit(u32 em_address) = 0;
|
||||||
|
|
||||||
virtual const CommonAsmRoutinesBase* GetAsmRoutines() = 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
|
// The default code buffer. We keep it around to not have to alloc/dealloc a
|
||||||
// large chunk of memory for each recompiled block.
|
// large chunk of memory for each recompiled block.
|
||||||
PPCAnalyst::CodeBuffer code_buffer;
|
PPCAnalyst::CodeBuffer code_buffer;
|
||||||
|
IREmitter::IRBuilder ibuild;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue