Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Nevermind the previous commit, SafeLoadToEAX already calls in to Unsa…
…feLoadToEAX if fastmem is enabled. This one just tidys up the code.
  • Loading branch information
Sonicadvance1 committed Sep 24, 2013
1 parent aa41978 commit 41ab4a2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStoreFloating.cpp
Expand Up @@ -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

Expand Down

0 comments on commit 41ab4a2

Please sign in to comment.