From 01d5e63faa7cbfe10c6c45a788cd9859da2dfcdb Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 26 Apr 2016 13:18:14 -0400 Subject: [PATCH] cmd/compile/internal/gc: rewrite comment to avoid automated meaning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The comment says 'DΟ NΟT SUBMIT', and that text being in a file can cause automated errors or warnings when trying to check the Go sources into other source control systems. (We reject that string in CL commit messages, which I've avoided here by changing the O's to Ο's above.) Change-Id: I6cdd57a8612ded5208f05a8bd6b137f44424a030 Reviewed-on: https://go-review.googlesource.com/22434 Run-TryBot: Russ Cox TryBot-Result: Gobot Gobot Reviewed-by: Robert Griesemer --- src/cmd/compile/internal/gc/bexport.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/compile/internal/gc/bexport.go b/src/cmd/compile/internal/gc/bexport.go index 0dc61374f1..b44eb5e05a 100644 --- a/src/cmd/compile/internal/gc/bexport.go +++ b/src/cmd/compile/internal/gc/bexport.go @@ -121,7 +121,7 @@ const debugFormat = false // default: false const posInfoFormat = false // TODO(gri) remove eventually -const forceNewExport = false // force new export format - DO NOT SUBMIT with this flag set +const forceNewExport = false // force new export format - do NOT submit with this flag set // forceObjFileStability enforces additional constraints in export data // and other parts of the compiler to eliminate object file differences -- 2.48.1