mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 11:50:51 -08:00
64-bit support for pelles c:
* New nmake file w3i6pc.nmk. * New stack scanner ssw3i6pc.c supplies missing jump buffer definition. * Some platform tests change from defined(MPS_PF_W3I6MV) to defined(MPS_OS_w3) && defined(MPS_ARCH_I6). * Make reasonable changes to the source code to avoid warnings from Pelles C: ** Ensure that printf formats are consistent with arguments by using PRIuLONGEST and casting to ulongest_t. ** Use size_t for loop variables that index into arrays. ** Suppress "Consider changing type to 'size_t' for loop variable" warnings for the MPS core. Copied from Perforce Change: 184996 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
4efa0dd942
commit
00ee0bfcc5
29 changed files with 445 additions and 82 deletions
|
|
@ -173,7 +173,8 @@ static void *test(void *arg, size_t s)
|
|||
|
||||
if (collections != c) {
|
||||
collections = c;
|
||||
printf("\nCollection %lu, %lu objects.\n", c, objs);
|
||||
printf("\nCollection %"PRIuLONGEST", %lu objects.\n",
|
||||
(ulongest_t)c, objs);
|
||||
report(arena);
|
||||
for (r = 0; r < exactRootsCOUNT; ++r) {
|
||||
if (exactRoots[r] != objNULL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue