From feb8dc7e6be33942c982c4733b7630d48ce88950 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Thu, 18 Dec 2008 10:42:37 +0000 Subject: [PATCH] fix 64-bit build git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1579 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp index 57ce37b3b4..f95a28fcab 100644 --- a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp +++ b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp @@ -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 }