diff --git a/libgo/runtime/go-new.c b/libgo/runtime/go-new.c index e673d14fc95..a592174e50f 100644 --- a/libgo/runtime/go-new.c +++ b/libgo/runtime/go-new.c @@ -11,7 +11,7 @@ void * __go_new (size_t size) { - return __go_alloc (size); + return runtime_mallocgc (size, 0, 1, 1); } void *