From 1516c22a22e51f49c27642110042e2303177416e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 17 Jan 2017 14:50:07 -0500 Subject: [PATCH] JitILBase: Make the IRBuilder instance protected There's no need to make it public. --- Source/Core/Core/PowerPC/JitILCommon/JitILBase.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitILCommon/JitILBase.h b/Source/Core/Core/PowerPC/JitILCommon/JitILBase.h index b5656d874b..bd38bc4b8e 100644 --- a/Source/Core/Core/PowerPC/JitILCommon/JitILBase.h +++ b/Source/Core/Core/PowerPC/JitILCommon/JitILBase.h @@ -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; };