diff options
| author | LLLL Colonq <llll@colonq> | 2026-09-01 20:59:47 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-09-01 20:59:47 -0400 |
| commit | a107593b6b362fb68e409c9d7b79427776d137d7 (patch) | |
| tree | e12f7ac95177432abb477273fb5f11122bafb38a /pit/src/native.c | |
| parent | ff7407c146b8129c2f1cc7ebe3b5771ad2f5dfdd (diff) | |
Diffstat (limited to 'pit/src/native.c')
| -rw-r--r-- | pit/src/native.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pit/src/native.c b/pit/src/native.c index d3f2e95..dbb461d 100644 --- a/pit/src/native.c +++ b/pit/src/native.c @@ -113,8 +113,8 @@ pit_value pit_load_file(pit_runtime *rt, char *path) { check_invariants(rt); if (pit_runtime_print_error(rt)) return PIT_NIL; ret = pit_vm_eval(rt, compiled); check_invariants(rt); if (pit_runtime_print_error(rt)) return PIT_NIL; - pit_gc(rt); - check_invariants(rt); if (pit_runtime_print_error(rt)) return PIT_NIL; + // pit_gc(rt); + // check_invariants(rt); if (pit_runtime_print_error(rt)) return PIT_NIL; } check_invariants(rt); if (pit_runtime_print_error(rt)) return PIT_NIL; return ret; |
