summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/JitWindow.cpp
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-02-23 20:29:55 +0000
committerhrydgard <hrydgard@gmail.com>2009-02-23 20:29:55 +0000
commit96827d9996c55fc517d03e18d7586720309aea75 (patch)
tree9ba093777640ec4de9a5420dba56456484477843 /Source/Core/DebuggerWX/Src/JitWindow.cpp
parent7d84ac6a5a7fb10b1145c2d6132f93ddad70a74b (diff)
Introduce JitCommon folder to share things between the two jits.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2396 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/JitWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/JitWindow.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/Core/DebuggerWX/Src/JitWindow.cpp b/Source/Core/DebuggerWX/Src/JitWindow.cpp
index 63afb0c228..a45121c528 100644
--- a/Source/Core/DebuggerWX/Src/JitWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/JitWindow.cpp
@@ -23,11 +23,16 @@
#include <wx/listctrl.h>
#include <wx/thread.h>
#include <wx/listctrl.h>
+
#include "JitWindow.h"
#include "HW/CPU.h"
#include "PowerPC/PowerPC.h"
+#if JITTEST
#include "PowerPC/Jit64/Jit.h"
-#include "PowerPC/Jit64/JitCache.h"
+#else
+#include "PowerPC/Jit64IL/Jit.h"
+#endif
+#include "PowerPC/JitCommon/JitCache.h"
#include "PowerPC/PPCAnalyst.h"
#include "PowerPCDisasm.h"
#include "Host.h"