diff --git a/doc/install-source.html b/doc/install-source.html index 1d7df3d42c..991be3f182 100644 --- a/doc/install-source.html +++ b/doc/install-source.html @@ -33,7 +33,7 @@ compiler using the GCC back end, see
-The Go compilers support six instruction sets. +The Go compilers support seven instruction sets. There are important differences in the quality of the compilers for the different architectures.
@@ -43,15 +43,17 @@ architectures.amd64 (also known as x86-64)
gccgo can do noticeably better sometimes).
+ A mature implementation. New in 1.7 is its SSA-based back end
+ that generates compact, efficient code.
386 (x86 or x86-32)
amd64 port.
+ Comparable to the amd64 port, but does
+ not yet use the SSA-based back end. It has an effective
+ optimizer (registerizer) and generates good code (although
+ gccgo can do noticeably better sometimes).
arm (ARM)
@@ -77,6 +79,12 @@ architectures.
s390x (IBM System z)
+