mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 02:32:36 +01:00
Compilation fix
This commit is contained in:
parent
5fc77fe89e
commit
0d489518ab
@ -263,6 +263,7 @@ namespace fmt
|
||||
}
|
||||
};
|
||||
|
||||
#ifdef __APPLE__
|
||||
template<>
|
||||
struct get_fmt<unsigned long>
|
||||
{
|
||||
@ -286,6 +287,7 @@ namespace fmt
|
||||
}
|
||||
}
|
||||
};
|
||||
#endif
|
||||
|
||||
template<>
|
||||
struct get_fmt<u64>
|
||||
@ -383,6 +385,7 @@ namespace fmt
|
||||
}
|
||||
};
|
||||
|
||||
#ifdef __APPLE__
|
||||
template<>
|
||||
struct get_fmt<long>
|
||||
{
|
||||
@ -406,6 +409,7 @@ namespace fmt
|
||||
}
|
||||
}
|
||||
};
|
||||
#endif
|
||||
|
||||
template<>
|
||||
struct get_fmt<s64>
|
||||
|
@ -253,6 +253,7 @@ uint64_t* darwin_x64reg(x64_context *context, int reg)
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
typedef decltype(REG_RIP) reg_table_t;
|
||||
|
||||
static const reg_table_t reg_table[17] =
|
||||
@ -262,6 +263,7 @@ static const reg_table_t reg_table[17] =
|
||||
};
|
||||
|
||||
#define X64REG(context, reg) (&context->uc_mcontext.gregs[reg_table[reg]])
|
||||
|
||||
#endif // __APPLE__
|
||||
|
||||
#endif
|
||||
|
@ -887,6 +887,7 @@ struct cast_ppu_gpr<u32, false>
|
||||
}
|
||||
};
|
||||
|
||||
#ifdef __APPLE__
|
||||
template<>
|
||||
struct cast_ppu_gpr<unsigned long, false>
|
||||
{
|
||||
@ -900,6 +901,7 @@ struct cast_ppu_gpr<unsigned long, false>
|
||||
return static_cast<unsigned long>(reg);
|
||||
}
|
||||
};
|
||||
#endif
|
||||
|
||||
template<>
|
||||
struct cast_ppu_gpr<u64, false>
|
||||
|
@ -100,6 +100,7 @@ namespace vm
|
||||
}
|
||||
};
|
||||
|
||||
#ifdef __APPLE__
|
||||
template<>
|
||||
struct cast_ptr<unsigned long>
|
||||
{
|
||||
@ -114,6 +115,7 @@ namespace vm
|
||||
return res;
|
||||
}
|
||||
};
|
||||
#endif
|
||||
|
||||
template<>
|
||||
struct cast_ptr<u32>
|
||||
|
Loading…
Reference in New Issue
Block a user