]> Cypherpunks repositories - gostls13.git/commitdiff
gc: fix comment in mkbuiltin
authorMaxim Pimenov <mpimenov@google.com>
Tue, 14 Feb 2012 21:27:35 +0000 (16:27 -0500)
committerRuss Cox <rsc@golang.org>
Tue, 14 Feb 2012 21:27:35 +0000 (16:27 -0500)
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5669046

src/cmd/gc/mkbuiltin

index c028518ba2b2e398f3aea69c5054339b5df200e6..2f76e6f06bf11ec7094dfc21bb7efbf7737413f9 100755 (executable)
@@ -3,7 +3,7 @@
 # Use of this source code is governed by a BSD-style
 # license that can be found in the LICENSE file.
 
-# Generate builtin.c and builtin.c.boot from $* (runtime.go and unsafe.go).
+# Generate builtin.c from $* (runtime.go and unsafe.go).
 # Run this after changing runtime.go and unsafe.go
 # or after changing the export metadata format in the compiler.
 # Either way, you need to have a working compiler binary first.
@@ -25,7 +25,7 @@ do
        O=$GOCHAR ./mkbuiltin1 $i >>_builtin.c
 done
 
-# If _builtin.c has changed vs builtin.c.boot,
+# If _builtin.c has changed vs builtin.c,
 # check in the new change.
 cmp -s _builtin.c builtin.c || cp _builtin.c builtin.c
 rm _builtin.c mkbuiltin1 unsafe.$GOCHAR runtime.$GOCHAR