Message156876
> + if (((size_t) p & LONG_PTR_MASK) == ((size_t) q & LONG_PTR_MASK)) {
> This test looks. I think that it should be replaced by:
> if (!((size_t) q & LONG_PTR_MASK)) {
"if (!((size_t) p & LONG_PTR_MASK)) {" if sizeof(long) <= sizeof(void *). And rewrite loop.
Now I got the idea that it is now difficult to find a platform for which sizeof(long) > sizeof(void *). |
|
Date |
User |
Action |
Args |
2012-03-26 22:47:14 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, pitrou, vstinner |
2012-03-26 22:47:14 | serhiy.storchaka | link | issue14419 messages |
2012-03-26 22:47:14 | serhiy.storchaka | create | |
|