Commit 1253c75c authored by Russ Cox's avatar Russ Cox Committed by Brad Fitzpatrick

runtime: fix compiler warnings

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5642068
parent ce57ba9f
......@@ -262,6 +262,13 @@ runtime·mallocinit(void)
byte *want;
p = nil;
arena_size = 0;
bitmap_size = 0;
// for 64-bit build
USED(p);
USED(arena_size);
USED(bitmap_size);
runtime·InitSizes();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment