summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-02-15 13:09:44 +0000
committerhrydgard <hrydgard@gmail.com>2009-02-15 13:09:44 +0000
commite5e55534ace34c81a1acdebf23b7ab45bb3fd6a6 (patch)
tree25d67638d57de747c872053fb1537a3c29109d34 /Source/Core
parent4f471ffeb6230d28223455c527ec810fb4986a93 (diff)
fix a fixme in IR.cpp. IR still broken in 64-bit though.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2254 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/PowerPC/Jit64IL/IR.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/Src/PowerPC/Jit64IL/IR.cpp b/Source/Core/Core/Src/PowerPC/Jit64IL/IR.cpp
index f816488296..cd6f0d8a8a 100644
--- a/Source/Core/Core/Src/PowerPC/Jit64IL/IR.cpp
+++ b/Source/Core/Core/Src/PowerPC/Jit64IL/IR.cpp
@@ -1049,11 +1049,11 @@ static OpArg regBuildMemAddress(RegInfo& RI, InstLoc I, InstLoc AI,
}
if (Profiled) {
+ // (Profiled mode isn't the default, at least for the moment)
#ifdef _M_IX86
return MDisp(baseReg, (u32)Memory::base + offset + ProfileOffset);
#else
- // FIXME: TO IMPLEMENT (Profiled mode isn't the default,
- // at least for the moment)
+ return MDisp(RBX, offset + ProfileOffset);
#endif
}
return MDisp(baseReg, offset);