summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2012-09-02 09:45:51 -0400
committerAdrian Thurston <thurston@complang.org>2012-09-02 09:45:51 -0400
commit2fbf6b7355b105ace682a9098821fef7eb2b1c9b (patch)
treeef42e193f1915bc358a793ca7f5e45e112525207
parentecd10ef928e0a161c5aa81a3598dd71c1b40cd06 (diff)
downloadcolm-2fbf6b7355b105ace682a9098821fef7eb2b1c9b.tar.gz
use a stack size of 8192 words
-rw-r--r--colm/program.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/colm/program.c b/colm/program.c
index afacd7bf..7bc9a1b4 100644
--- a/colm/program.c
+++ b/colm/program.c
@@ -33,8 +33,7 @@
#include <assert.h>
#include <stdlib.h>
-#define VM_STACK_SIZE (SIZEOF_WORD*1024ll*1024ll)
-//#define VM_STACK_SIZE (1)
+#define VM_STACK_SIZE (8192)
void colmInit( long debugRealm )
{