diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-01-28 03:41:05 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-01-28 03:55:56 -0500 |
| commit | f5fe387a202caaf3418e50f0d2f13ca5f2dbf31d (patch) | |
| tree | ed383b2ca650d2173a21cfe52832916e5d33005f | |
| parent | 0d42cbc923eef625bd35997860afb409c1a230e3 (diff) | |
DSPEmitter: Make emitter dispatcher pointers private
| -rw-r--r-- | Source/Core/Core/DSP/Jit/DSPEmitter.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Core/Core/DSP/Jit/DSPEmitter.h b/Source/Core/Core/DSP/Jit/DSPEmitter.h index a9f7694a5a..e33c0d6edd 100644 --- a/Source/Core/Core/DSP/Jit/DSPEmitter.h +++ b/Source/Core/Core/DSP/Jit/DSPEmitter.h @@ -247,12 +247,6 @@ public: void madd(const UDSPInstruction opc); void msub(const UDSPInstruction opc); - // CALL this to start the dispatcher - const u8* m_enter_dispatcher; - const u8* m_reenter_dispatcher; - const u8* m_stub_entry_point; - const u8* m_return_dispatcher; - std::list<u16> m_unresolved_jumps[MAX_BLOCKS]; private: @@ -299,6 +293,12 @@ private: // The index of the last stored ext value (compile time). int m_store_index = -1; int m_store_index2 = -1; + + // CALL this to start the dispatcher + const u8* m_enter_dispatcher; + const u8* m_reenter_dispatcher; + const u8* m_stub_entry_point; + const u8* m_return_dispatcher; }; } // namespace x86 |
