diff --git a/runtime/runtime.c b/runtime/runtime.c index edbc2e97b..73dd2b802 100644 --- a/runtime/runtime.c +++ b/runtime/runtime.c @@ -689,12 +689,12 @@ extern void* Bstring (void *p) { int n = strlen (p); void *s; - __pre_gc (); + // __pre_gc (); s = LmakeString (BOX(n)); strncpy (s, p, n + 1); - __post_gc (); + // __post_gc (); return s; }