JitILBase: Make the IRBuilder instance protected

There's no need to make it public.
This commit is contained in:
Lioncash 2017-01-17 14:50:07 -05:00
parent e924814d62
commit 1516c22a22

View File

@ -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;
};