diff options
| author | Richard Brooksby | 2012-05-22 16:30:35 +0100 |
|---|---|---|
| committer | Richard Brooksby | 2012-05-22 16:30:35 +0100 |
| commit | eb81034355461d8be8656d8d42ec7d1cbca5944b (patch) | |
| tree | be96b13e330c71337b92838bf01628578f9fd754 /mps/code | |
| parent | 4c8144b692d2846b7826928b0fa5997d1de9a1f1 (diff) | |
| download | emacs-eb81034355461d8be8656d8d42ec7d1cbca5944b.tar.gz emacs-eb81034355461d8be8656d8d42ec7d1cbca5944b.zip | |
Disabling address probing test for 64-bit platforms until we design a better one.
Copied from Perforce
Change: 178282
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
| -rw-r--r-- | mps/code/amcss.c | 2 |
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", |