mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-07 20:16:42 +00:00
Update xbyak to 5.97
Keeps the library up to date.
This commit is contained in:
4
externals/xbyak/sample/calc2.cpp
vendored
4
externals/xbyak/sample/calc2.cpp
vendored
@@ -102,7 +102,7 @@ private:
|
||||
MAX_CONST_NUM = 32
|
||||
};
|
||||
MIE_ALIGN(16) double constTbl_[MAX_CONST_NUM];
|
||||
Xbyak::uint64 negConst_;
|
||||
Xbyak::uint64_t negConst_;
|
||||
size_t constTblPos_;
|
||||
#ifdef XBYAK32
|
||||
const Xbyak::Reg32& varTbl_;
|
||||
@@ -118,7 +118,7 @@ public:
|
||||
64bit: x [rcx](win), xmm0(gcc), return xmm0
|
||||
*/
|
||||
Jit()
|
||||
: negConst_(Xbyak::uint64(1) << 63)
|
||||
: negConst_(Xbyak::uint64_t(1) << 63)
|
||||
, constTblPos_(0)
|
||||
#ifdef XBYAK32
|
||||
, varTbl_(eax)
|
||||
|
||||
Reference in New Issue
Block a user