externals/xbyak: Update xbyak to 5.77

Merge commit '080b4b3aff' into HEAD
This commit is contained in:
MerryMage 2020-04-22 20:59:14 +01:00
commit b941cbbcfb
17 changed files with 994 additions and 489 deletions

View file

@ -32,7 +32,7 @@ struct Code : Xbyak::CodeGenerator {
inline int add(int a, int b)
{
return Xbyak::CastTo<int (*)(int,int)>(buf)(a, b);
return reinterpret_cast<int (*)(int, int)>(buf)(a, b);
}
int main()