summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-01-28 03:41:05 -0500
committerLioncash <mathew1800@gmail.com>2017-01-28 03:55:56 -0500
commitf5fe387a202caaf3418e50f0d2f13ca5f2dbf31d (patch)
treeed383b2ca650d2173a21cfe52832916e5d33005f
parent0d42cbc923eef625bd35997860afb409c1a230e3 (diff)
DSPEmitter: Make emitter dispatcher pointers private
-rw-r--r--Source/Core/Core/DSP/Jit/DSPEmitter.h12
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