aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/amcss.c
diff options
context:
space:
mode:
Diffstat (limited to 'mps/code/amcss.c')
-rw-r--r--mps/code/amcss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mps/code/amcss.c b/mps/code/amcss.c
index 277ffca434a..b1a0d5e4e6b 100644
--- a/mps/code/amcss.c
+++ b/mps/code/amcss.c
@@ -221,7 +221,7 @@ static void *test(void *arg, size_t s)
221 printf("%lu objects (mps_collections says: %lu)\n", objs, c); 221 printf("%lu objects (mps_collections says: %lu)\n", objs, c);
222 222
223 /* test mps_arena_has_addr */ 223 /* test mps_arena_has_addr */
224 { 224 if (sizeof(mps_addr_t) == 4) { /* @@@@ W3I6MV This test is bogus for 64-bit address space. */
225 size_t hitRatio; 225 size_t hitRatio;
226 int hitsWanted = 4; /* aim for 4 hits (on average) */ 226 int hitsWanted = 4; /* aim for 4 hits (on average) */
227 /* [Note: The for-loop condition used to be "i < 4 * hitRatio", 227 /* [Note: The for-loop condition used to be "i < 4 * hitRatio",