fix 64-bit build

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1579 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard 2008-12-18 10:42:37 +00:00
parent 4ac1d4d2b3
commit feb8dc7e6b

View file

@ -282,7 +282,7 @@ void stfsx(UGeckoInstruction inst)
INSTRUCTION_START;
#ifdef _M_X64
Default(inst); return;
#endif
#else
gpr.FlushLockX(ABI_PARAM1);
fpr.Lock(inst.RS);
MOV(32, R(ABI_PARAM1), gpr.R(inst.RB));
@ -295,7 +295,7 @@ void stfsx(UGeckoInstruction inst)
MOV(32, MDisp(ABI_PARAM1, (u32)Memory::base), R(EAX));
gpr.UnlockAllX();
fpr.UnlockAll();
return;
#endif
}