minor cosmetic changes to the Windows build files
This commit is contained in:
parent
4033c0636a
commit
f85231351f
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Python script for running GMP tests
|
||||
# Python script for running GMP tests
|
||||
#
|
||||
# Run this from the build.vc11\mpir-tests directory
|
||||
|
||||
@ -99,7 +99,7 @@ if build_fail > 0 :
|
||||
if run_ok > 0 :
|
||||
print("\t{0} ran correctly".format(run_ok))
|
||||
if run_fail > 0 :
|
||||
print("\t{0} failed".format(run_fail))
|
||||
print("\t{0} failed".format(run_fail))
|
||||
if len(sys.argv) == 1 :
|
||||
try :
|
||||
input(".. completed - press ENTER")
|
||||
|
@ -1,41 +1,4 @@
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
||||
# include <intrin.h>
|
||||
|
||||
# define COUNT_LEADING_ZEROS_NEED_CLZ_TAB
|
||||
|
||||
# if !defined( _WIN64 )
|
||||
|
||||
# pragma intrinsic(_BitScanForward)
|
||||
# pragma intrinsic(_BitScanReverse)
|
||||
# pragma intrinsic(__emulu)
|
||||
# pragma intrinsic(_byteswap_ulong)
|
||||
|
||||
# define count_leading_zeros(c,x) \
|
||||
do { unsigned long _z; \
|
||||
ASSERT ((x) != 0); \
|
||||
_BitScanReverse(&_z, (x)); \
|
||||
c = 31 - _z; \
|
||||
} while (0)
|
||||
# define count_trailing_zeros(c,x) \
|
||||
do { unsigned long _z; \
|
||||
ASSERT ((x) != 0); \
|
||||
_BitScanForward(&_z, (x)); \
|
||||
c = _z; \
|
||||
} while (0)
|
||||
# define umul_ppmm(xh, xl, m0, m1) \
|
||||
do { unsigned __int64 _t; \
|
||||
_t = __emulu( (m0), (m1)); \
|
||||
xl = _t & 0xffffffff; \
|
||||
xh = _t >> 32; \
|
||||
} while (0)
|
||||
|
||||
# if !defined( BSWAP_LIMB )
|
||||
# define BSWAP_LIMB
|
||||
# define BSWAP_LIMB(dst, src) dst = _byteswap_ulong(src)
|
||||
# endif
|
||||
|
||||
# endif /* _WIN64 */
|
||||
|
||||
#endif /* _MSC_VER */
|
||||
#define COUNT_LEADING_ZEROS_NEED_CLZ_TAB
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user