mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
#ifdef __APPLE__ && _M_X64 needs to be #if defined(__APPLE__) && _M_X64, etc
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5229 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2e622c17dc
commit
ea90996852
@ -317,7 +317,7 @@ void Jit64::stX(UGeckoInstruction inst)
|
|||||||
case 38: accessSize = 8; break; //stb
|
case 38: accessSize = 8; break; //stb
|
||||||
default: _assert_msg_(DYNA_REC, 0, "AWETKLJASDLKF"); return;
|
default: _assert_msg_(DYNA_REC, 0, "AWETKLJASDLKF"); return;
|
||||||
}
|
}
|
||||||
#ifndef __APPLE__ && _M_X64
|
#if !defined(__APPLE__) && _M_X64
|
||||||
// This code path fails in OSX, not 100% sure why, seems to be from the gpr.SetImmediate
|
// This code path fails in OSX, not 100% sure why, seems to be from the gpr.SetImmediate
|
||||||
if (gpr.R(a).IsImm())
|
if (gpr.R(a).IsImm())
|
||||||
{
|
{
|
||||||
|
@ -38,7 +38,7 @@ using namespace Gen;
|
|||||||
static int temp32;
|
static int temp32;
|
||||||
|
|
||||||
|
|
||||||
#ifdef __APPLE__ && _M_X64
|
#if defined(__APPLE__) && _M_X64
|
||||||
void CommonAsmRoutines::GenFifoWrite(int size)
|
void CommonAsmRoutines::GenFifoWrite(int size)
|
||||||
{
|
{
|
||||||
// Assume value in ABI_PARAM1
|
// Assume value in ABI_PARAM1
|
||||||
|
Loading…
Reference in New Issue
Block a user