From 0713293374ad75c0e92cac14f9c0d071bc45de83 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 28 Jun 2013 12:06:25 -0700 Subject: [PATCH] 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 --- src/cmd/5g/ggen.c | 2 +- src/cmd/6g/ggen.c | 2 +- src/cmd/8g/ggen.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cmd/5g/ggen.c b/src/cmd/5g/ggen.c index d9935ca25af..70049a89cc1 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 e7c4c7ebfb1..a47de23bdba 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 d7d58d917fc..60b22bbea2d 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) {