about summary refs log tree commit diff
path: root/src/bootstrap/main.pry
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-07-14 21:11:56 +0200
committerBaitinq <[email protected]>2025-07-14 21:11:56 +0200
commit631520a21c9b8a4e7febaae47f740dd1110b4731 (patch)
tree770fdeb4476466bb4ddc5a3fe68948307e04b545 /src/bootstrap/main.pry
parentBoostrap: Support codegen for simple type (diff)
downloadpry-lang-631520a21c9b8a4e7febaae47f740dd1110b4731.tar.gz
pry-lang-631520a21c9b8a4e7febaae47f740dd1110b4731.tar.bz2
pry-lang-631520a21c9b8a4e7febaae47f740dd1110b4731.zip
Boostrap: Improvements
Diffstat (limited to 'src/bootstrap/main.pry')
-rw-r--r--src/bootstrap/main.pry2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/main.pry b/src/bootstrap/main.pry
index 347b63c..835f4c4 100644
--- a/src/bootstrap/main.pry
+++ b/src/bootstrap/main.pry
@@ -40,7 +40,7 @@ let main = (argc: i64, argv: **i8) => i64 {
 
 	printf("%s\n", filename);
 
-	let alloc = arena_init(99999999999);
+	let alloc = arena_init(1024 * 1024 * 1024);
 
 	let file = read_file(filename, alloc);