diff options
Diffstat (limited to 'mps/code/amcss.c')
| -rw-r--r-- | mps/code/amcss.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mps/code/amcss.c b/mps/code/amcss.c index 7055bf94b70..279b33ce407 100644 --- a/mps/code/amcss.c +++ b/mps/code/amcss.c | |||
| @@ -38,7 +38,9 @@ static mps_gen_param_s testChain[genCOUNT] = { | |||
| 38 | 38 | ||
| 39 | 39 | ||
| 40 | /* objNULL needs to be odd so that it's ignored in exactRoots. */ | 40 | /* objNULL needs to be odd so that it's ignored in exactRoots. */ |
| 41 | #define objNULL ((mps_addr_t)0xDECEA5ED) | 41 | /* @@@@ W3I6MV Temporary fix (ull) to prevent Microsoft C complaining. Need |
| 42 | to work out what to do about such cases. */ | ||
| 43 | #define objNULL ((mps_addr_t)0xDECEA5EDull) | ||
| 42 | 44 | ||
| 43 | 45 | ||
| 44 | static mps_pool_t pool; | 46 | static mps_pool_t pool; |
| @@ -210,7 +212,7 @@ static void *test(void *arg, size_t s) | |||
| 210 | ramping = 1; | 212 | ramping = 1; |
| 211 | objs = 0; | 213 | objs = 0; |
| 212 | while (collections < collectionsCOUNT) { | 214 | while (collections < collectionsCOUNT) { |
| 213 | unsigned long c; | 215 | mps_word_t c; |
| 214 | size_t r; | 216 | size_t r; |
| 215 | 217 | ||
| 216 | c = mps_collections(arena); | 218 | c = mps_collections(arena); |