diff options
| author | Lioncash <mai.iam2048@gmail.com> | 2024-01-23 16:26:59 -0500 |
|---|---|---|
| committer | Lioncash <mai.iam2048@gmail.com> | 2024-01-23 16:27:02 -0500 |
| commit | b06e1880b6041b59663d119ce842e80a0320db04 (patch) | |
| tree | 81b1e6bfbdd80db0b6faad4c6b4b67956642228e /Source | |
| parent | f2292467ad54da9e577aaea2cb3fadc232ee7ebe (diff) | |
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.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.h b/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.h index 32f983d2ef..ffac2da1a1 100644 --- a/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.h +++ b/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.h @@ -26,7 +26,7 @@ private: class CommonAsmRoutines : public CommonAsmRoutinesBase, public QuantizedMemoryRoutines { public: - explicit CommonAsmRoutines(Jit64& jit) : QuantizedMemoryRoutines(jit), m_jit(jit) {} + explicit CommonAsmRoutines(Jit64& jit) : QuantizedMemoryRoutines(jit) {} void GenFrsqrte(); void GenFres(); void GenMfcr(); @@ -39,6 +39,4 @@ protected: void GenQuantizedSingleLoads(); void GenQuantizedStores(); void GenQuantizedSingleStores(); - - Jit64& m_jit; }; |
