mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08:00
[SDK] Update Int32x32To64 macro for arm
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user