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
This commit is contained in:
hrydgard 2009-02-15 13:09:44 +00:00
parent 4f471ffeb6
commit e5e55534ac
1 changed files with 2 additions and 2 deletions

View File

@ -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);