vm: change code heap alignment to 16 bytes instead of 32 to reduce image size

db4
Slava Pestov 2009-10-19 06:10:39 -05:00
parent b6a0324be6
commit 21d29b3961
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
namespace factor
{
static const cell free_list_count = 16;
static const cell block_size_increment = 32;
static const cell free_list_count = 32;
static const cell block_size_increment = 16;
struct heap_free_list {
free_heap_block *small_blocks[free_list_count];