From 8cb8adbf8105ea45dc6548428d00972699223e6e Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sun, 18 May 2025 23:55:48 +0200 Subject: Bootstra: Tokenizer: Allocate more memory for tokens --- src/bootstrap/tokenizer.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bootstrap') diff --git a/src/bootstrap/tokenizer.src b/src/bootstrap/tokenizer.src index 26d31b8..d8f868e 100644 --- a/src/bootstrap/tokenizer.src +++ b/src/bootstrap/tokenizer.src @@ -354,7 +354,7 @@ let tokenizer_init = (filename: *i8) => i64 { println("%s", buf); - tokens = malloc(10000); + tokens = malloc(100000); while true { let t = tokenizer_next(); -- cgit 1.4.1