mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
stb and stbu do not work under 64bit Linux, re-disabling
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1293 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -373,6 +373,14 @@ namespace Jit64
|
||||
#endif*/
|
||||
|
||||
//Still here? Do regular path.
|
||||
|
||||
// NOTE: stb and stbu are broken under 64bit Linux
|
||||
#ifndef _WIN32
|
||||
#ifdef _M_X64
|
||||
Default(inst);
|
||||
return;
|
||||
#endif
|
||||
#endif
|
||||
gpr.Lock(s, a);
|
||||
gpr.FlushLockX(ABI_PARAM1, ABI_PARAM2);
|
||||
MOV(32, R(ABI_PARAM2), gpr.R(a));
|
||||
|
Reference in New Issue
Block a user