From e5e55534ace34c81a1acdebf23b7ab45bb3fd6a6 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sun, 15 Feb 2009 13:09:44 +0000 Subject: [PATCH] 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 --- Source/Core/Core/Src/PowerPC/Jit64IL/IR.cpp | 4 ++-- 1 file 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);