2016-04-09
2016-04-09 16:47:42 by Martin Nilsson <nilsson@fastmail.com>
-
30f5b2f89165e6700c65eb5a9707bbe6464895dd
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 8.1
unsigned INT64 -> UINT64
379: Inside #if SIZEOF_LONG == 8 || SIZEOF_LONG_LONG == 8
#if SIZEOF_LONG == 8 || SIZEOF_LONG_LONG == 8
#define BV_LENGTH 64
- #define BV_ONE ((unsigned INT64)1)
- #define BV_NIL ((unsigned INT64)0)
+ #define BV_ONE ((UINT64)1)
+ #define BV_NIL ((UINT64)0)
#define BV_CLZ clz64
#define BV_CTZ ctz64
- typedef unsigned INT64 bv_int_t;
+ typedef UINT64 bv_int_t;
#else
#define BV_LENGTH 32
#define BV_ONE ((unsigned INT32)1)