From edebe10864982e912e70c7fa1bc5676ed7933f33 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 15 Apr 2014 16:27:48 -0700 Subject: [PATCH] doc/asm.html: remove mention of 6l -a Also make it clear this is not a complete description of all features. Fixes #7790. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/88300044 --- doc/asm.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/asm.html b/doc/asm.html index b855b9ef7a0..860bc577387 100644 --- a/doc/asm.html +++ b/doc/asm.html @@ -8,7 +8,11 @@

This document is a quick outline of the unusual form of assembly language used by the gc suite of Go compilers (6g, 8g, etc.). -It is based on the input to the Plan 9 assemblers, which is documented in detail +The document is not comprehensive. +

+ +

+The assembler is based on the input to the Plan 9 assemblers, which is documented in detail on the Plan 9 site. If you plan to write assembly language, you should read that document although much of it is Plan 9-specific. This document provides a summary of the syntax and @@ -70,6 +74,8 @@ The FUNCDATA and PCDATA directives contain information for use by the garbage collector; they are introduced by the compiler.

+

Symbols