From 41ab4a227557c3914c15a33c3d36a833bdd80ee6 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Tue, 24 Sep 2013 01:40:19 +0000 Subject: [PATCH] Nevermind the previous commit, SafeLoadToEAX already calls in to UnsafeLoadToEAX if fastmem is enabled. This one just tidys up the code. --- Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp index 4e5e885ea4..200727dc15 100644 --- a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp +++ b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp @@ -49,11 +49,8 @@ void Jit64::lfs(UGeckoInstruction inst) return; } s32 offset = (s32)(s16)inst.SIMM_16; -#if defined(_M_X64) - UnsafeLoadToEAX(gpr.R(a), 32, offset, false); -#else + SafeLoadToEAX(gpr.R(a), 32, offset, false); -#endif MEMCHECK_START