core: Fix gc_up_arena for x86_64.

* src/gc.c (gc_): Fix gc_up_arena for x86_64.
This commit is contained in:
Jan Nieuwenhuizen 2018-04-29 12:04:18 +02:00
parent 865e72ae8a
commit a56d5e3efe
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 4 additions and 0 deletions

View File

@ -170,7 +170,11 @@ gc_ () ///((internal))
}
g_free = 1;
#if __MESC__
if (ARENA_SIZE < MAX_ARENA_SIZE && (int)g_news > 0)
#else
if (ARENA_SIZE < MAX_ARENA_SIZE && g_news > 0)
#endif
{
if (g_debug == 2)
eputs ("+");