JitILBase: Move protected members below public
This commit is contained in:
parent
9e85e4e26b
commit
e924814d62
|
@ -12,11 +12,6 @@
|
||||||
|
|
||||||
class JitILBase : public Jitx86Base
|
class JitILBase : public Jitx86Base
|
||||||
{
|
{
|
||||||
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;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
JitILBase() : code_buffer(32000) {}
|
JitILBase() : code_buffer(32000) {}
|
||||||
~JitILBase() {}
|
~JitILBase() {}
|
||||||
|
@ -128,4 +123,9 @@ public:
|
||||||
void subfcx(UGeckoInstruction inst);
|
void subfcx(UGeckoInstruction inst);
|
||||||
void subfx(UGeckoInstruction inst);
|
void subfx(UGeckoInstruction inst);
|
||||||
void subfex(UGeckoInstruction inst);
|
void subfex(UGeckoInstruction inst);
|
||||||
|
|
||||||
|
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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue