summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core')
-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