2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libgo / runtime / go-new.c
blob9d46706eaa417be4e0e33170e44b31eeb815b347
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 "arch.h"
10 #include "malloc.h"
12 void *
13 __go_new (uintptr_t size)
15 return runtime_mallocgc (size, 0, 0);
18 void *
19 __go_new_nopointers (uintptr_t size)
21 return runtime_mallocgc (size, 0, FlagNoScan);