mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
Temporary fix to constant to suppress warning.
Copied from Perforce Change: 178088 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
390f27c789
commit
28b06ee71a
1 changed files with 4 additions and 2 deletions
|
|
@ -38,7 +38,9 @@ static mps_gen_param_s testChain[genCOUNT] = {
|
|||
|
||||
|
||||
/* objNULL needs to be odd so that it's ignored in exactRoots. */
|
||||
#define objNULL ((mps_addr_t)0xDECEA5ED)
|
||||
/* @@@@ W3I6MV Temporary fix (ull) to prevent Microsoft C complaining. Need
|
||||
to work out what to do about such cases. */
|
||||
#define objNULL ((mps_addr_t)0xDECEA5EDull)
|
||||
|
||||
|
||||
static mps_pool_t pool;
|
||||
|
|
@ -210,7 +212,7 @@ static void *test(void *arg, size_t s)
|
|||
ramping = 1;
|
||||
objs = 0;
|
||||
while (collections < collectionsCOUNT) {
|
||||
unsigned long c;
|
||||
mps_word_t c;
|
||||
size_t r;
|
||||
|
||||
c = mps_collections(arena);
|
||||
|
|
|
|||
Loading…
Reference in a new issue