improve performance by using an inline locals array in hashmaps

This commit is contained in:
William Bell
2025-09-08 02:21:26 +01:00
parent 23c4a7ebd1
commit d46a6dc209
8 changed files with 60 additions and 27 deletions

View File

@@ -481,7 +481,7 @@ int main(int argc, char *argv[]) {
}
clock_t start = clock(), end;
RuntimeState state = init_runtime_state(translated, path);
Stack *main_scope = create_scope(Global_Scope);
Stack *main_scope = create_scope(Global_Scope, true);
runtime(translated, state, main_scope, &err);
end = clock();