From: Russ Cox Date: Thu, 9 Jun 2011 22:28:27 +0000 (-0400) Subject: gc: compactframe breaks arm - fix build X-Git-Tag: weekly.2011-06-09~8 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=900c5fa98e2010f3a80fda4d6cfa1531e5509046;p=gostls13.git gc: compactframe breaks arm - fix build R=lvd CC=golang-dev https://golang.org/cl/4591063 --- diff --git a/src/cmd/gc/pgen.c b/src/cmd/gc/pgen.c index c24648737b..ab61866973 100644 --- a/src/cmd/gc/pgen.c +++ b/src/cmd/gc/pgen.c @@ -111,7 +111,8 @@ compile(Node *fn) } oldstksize = stksize; - compactframe(ptxt); + if(thechar != '5') + compactframe(ptxt); if(0) print("compactframe: %ld to %ld\n", oldstksize, stksize);