Fix Integer ARM64 compile with MSVC compiler (GH #776)
parent
7ab07dde06
commit
c085c7a75b
|
|
@ -233,7 +233,7 @@ static word AtomicInverseModPower2(word A)
|
||||||
#define GetBorrow(u) u##1
|
#define GetBorrow(u) u##1
|
||||||
#else
|
#else
|
||||||
#define Declare2Words(x) dword x;
|
#define Declare2Words(x) dword x;
|
||||||
#if _MSC_VER >= 1400 && !defined(__INTEL_COMPILER) && !defined(_M_ARM)
|
#if _MSC_VER >= 1400 && !defined(__INTEL_COMPILER) && !(defined(_M_ARM) || defined(_M_ARM64))
|
||||||
#define MultiplyWords(p, a, b) p = __emulu(a, b);
|
#define MultiplyWords(p, a, b) p = __emulu(a, b);
|
||||||
#else
|
#else
|
||||||
#define MultiplyWords(p, a, b) p = (dword)a*b;
|
#define MultiplyWords(p, a, b) p = (dword)a*b;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue