mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
Jit64AsmCommon: Remove redundant m_jit member from CommonAsmRoutines
We pass a JIT instance all the way down to EmuCodeBlock, which is accessible under protected as well, so this isn't really necessary.
This commit is contained in:
parent
f2292467ad
commit
b06e1880b6
@ -26,7 +26,7 @@ private:
|
|||||||
class CommonAsmRoutines : public CommonAsmRoutinesBase, public QuantizedMemoryRoutines
|
class CommonAsmRoutines : public CommonAsmRoutinesBase, public QuantizedMemoryRoutines
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit CommonAsmRoutines(Jit64& jit) : QuantizedMemoryRoutines(jit), m_jit(jit) {}
|
explicit CommonAsmRoutines(Jit64& jit) : QuantizedMemoryRoutines(jit) {}
|
||||||
void GenFrsqrte();
|
void GenFrsqrte();
|
||||||
void GenFres();
|
void GenFres();
|
||||||
void GenMfcr();
|
void GenMfcr();
|
||||||
@ -39,6 +39,4 @@ protected:
|
|||||||
void GenQuantizedSingleLoads();
|
void GenQuantizedSingleLoads();
|
||||||
void GenQuantizedStores();
|
void GenQuantizedStores();
|
||||||
void GenQuantizedSingleStores();
|
void GenQuantizedSingleStores();
|
||||||
|
|
||||||
Jit64& m_jit;
|
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user