buildfix for r3671

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3673 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-07-04 04:52:30 +00:00
parent 68a384f803
commit 76b5bd49f8
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ static OpArg regBuildMemAddress(RegInfo& RI, InstLoc I, InstLoc AI,
#ifdef _M_IX86
return MDisp(baseReg, (u32)Memory::base + offset + ProfileOffset);
#else
LEA(32, EAX, MDisp(baseReg, offset + ProfileOffset));
RI.Jit->LEA(32, EAX, MDisp(baseReg, offset + ProfileOffset));
return MComplex(RBX, EAX, 1, 0);
#endif
}