double default heap sizes on amd64

cvs
Slava Pestov 2006-01-25 06:26:31 +00:00
parent 2ee22aad49
commit 64e50829b7
1 changed files with 5 additions and 5 deletions

View File

@ -40,12 +40,12 @@ INLINE bool factor_arg(const char* str, const char* arg, CELL* value)
int main(int argc, char** argv)
{
char *image;
CELL ds_size = 2048;
CELL cs_size = 2048;
CELL ds_size = 512;
CELL cs_size = 512;
CELL generations = 2;
CELL young_size = 8;
CELL aging_size = 16;
CELL code_size = 4;
CELL young_size = 2 * CELLS;
CELL aging_size = 4 * CELLS;
CELL code_size = CELLS;
CELL literal_size = 128;
CELL args;
CELL i;