From: Russ Cox Date: Fri, 19 Jul 2013 19:40:32 +0000 (-0400) Subject: cmd/dist: generate offsets for P structure X-Git-Tag: go1.2rc2~991 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5d340de1f682d3b2cf10b2319c25ef3799e84078;p=gostls13.git cmd/dist: generate offsets for P structure So far no checked-in assembly needs these, but it matches having them for M and G. I needed these for some manual testing. R=golang-dev, dvyukov CC=golang-dev https://golang.org/cl/11595043 --- diff --git a/src/cmd/dist/buildruntime.c b/src/cmd/dist/buildruntime.c index a9c341c93a..675ef2f58f 100644 --- a/src/cmd/dist/buildruntime.c +++ b/src/cmd/dist/buildruntime.c @@ -248,6 +248,8 @@ ok: aggr = "g"; else if(streq(fields.p[1], "M")) aggr = "m"; + else if(streq(fields.p[1], "P")) + aggr = "p"; else if(streq(fields.p[1], "Gobuf")) aggr = "gobuf"; else if(streq(fields.p[1], "WinCall"))