2011-10-08 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / libgo / runtime / go-new.c
blob657978c30a82433744fdb73a5bcdf14aabe25c22
1 /* go-new.c -- the generic go new() function.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
7 #include "go-alloc.h"
8 #include "runtime.h"
9 #include "malloc.h"
11 void *
12 __go_new (uintptr_t size)
14 return runtime_mallocgc (size, 0, 1, 1);
17 void *
18 __go_new_nopointers (uintptr_t size)
20 return runtime_mallocgc (size, FlagNoPointers, 1, 1);