Commit b65271d0 authored by Anthony Martin's avatar Anthony Martin

runtime: fix newproc debugging print

R=golang-dev, remyoudompheng, r
CC=golang-dev
https://golang.org/cl/9249044
parent 28882bbd
......@@ -1491,7 +1491,7 @@ runtime·newproc1(FuncVal *fn, byte *argp, int32 narg, int32 nret, void *callerp
G *newg;
int32 siz;
//printf("newproc1 %p %p narg=%d nret=%d\n", fn, argp, narg, nret);
//runtime·printf("newproc1 %p %p narg=%d nret=%d\n", fn->fn, argp, narg, nret);
siz = narg + nret;
siz = (siz+7) & ~7;
......
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