From: Russ Cox Date: Fri, 28 Jun 2013 19:06:25 +0000 (-0700) Subject: cmd/5g, cmd/6g, cmd/8g: fix comment X-Git-Tag: go1.2rc2~1143 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0713293374ad75c0e92cac14f9c0d071bc45de83;p=gostls13.git cmd/5g, cmd/6g, cmd/8g: fix comment Keeping the string "compactframe" because that's what I always search for to find this code. But point to the real place too. TBR=iant CC=golang-dev https://golang.org/cl/10676047 --- diff --git a/src/cmd/5g/ggen.c b/src/cmd/5g/ggen.c index d9935ca25a..70049a89cc 100644 --- a/src/cmd/5g/ggen.c +++ b/src/cmd/5g/ggen.c @@ -39,7 +39,7 @@ markautoused(Prog* p) } } -// Fixup instructions after compactframe has moved all autos around. +// Fixup instructions after allocauto (formerly compactframe) has moved all autos around. void fixautoused(Prog* p) { diff --git a/src/cmd/6g/ggen.c b/src/cmd/6g/ggen.c index e7c4c7ebfb..a47de23bdb 100644 --- a/src/cmd/6g/ggen.c +++ b/src/cmd/6g/ggen.c @@ -36,7 +36,7 @@ markautoused(Prog* p) } } -// Fixup instructions after compactframe has moved all autos around. +// Fixup instructions after allocauto (formerly compactframe) has moved all autos around. void fixautoused(Prog *p) { diff --git a/src/cmd/8g/ggen.c b/src/cmd/8g/ggen.c index d7d58d917f..60b22bbea2 100644 --- a/src/cmd/8g/ggen.c +++ b/src/cmd/8g/ggen.c @@ -38,7 +38,7 @@ markautoused(Prog* p) } } -// Fixup instructions after compactframe has moved all autos around. +// Fixup instructions after allocauto (formerly compactframe) has moved all autos around. void fixautoused(Prog* p) {