[SDK] Update Int32x32To64 macro for arm

This commit is contained in:
Mark Jansen 2019-08-20 13:02:35 +02:00
parent 35aeaa2397
commit b445fef904
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -761,7 +761,7 @@ $endif(_WINNT_)
#define MAXLONGLONG (0x7fffffffffffffffLL)
/* 32 to 64 bit multiplication. GCC is really bad at optimizing the native math */
#if defined(_M_IX86) && defined(__GNUC__) && \
#if defined(_M_IX86) && !defined(_M_ARM) && !defined(_M_ARM64) && \
!defined(MIDL_PASS)&& !defined(RC_INVOKED) && !defined(_M_CEE_PURE)
#define Int32x32To64(a,b) __emul(a,b)
#define UInt32x32To64(a,b) __emulu(a,b)