aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2011-08-31 15:16:51 -0700
committerRobert Griesemer <gri@golang.org>2011-08-31 15:16:51 -0700
commitffe70eaa3cc9913d4d3e462ecaa41522330da85e (patch)
tree32fef3dbf577124b559eb0fe0b7010468a41c039
parent7c203b8bc1e4958a7e17d0149f7a86f112d123d6 (diff)
downloadgo-ffe70eaa3cc9913d4d3e462ecaa41522330da85e.tar.gz
go-ffe70eaa3cc9913d4d3e462ecaa41522330da85e.zip
go spec: update section on Implementation Differences
R=rsc, r CC=golang-dev https://golang.org/cl/4977046
-rw-r--r--doc/go_spec.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/go_spec.html b/doc/go_spec.html
index 82c7ed419c..f46e2f87f0 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -1,5 +1,5 @@
<!-- title The Go Programming Language Specification -->
-<!-- subtitle Version of July 14, 2011 -->
+<!-- subtitle Version of August 31, 2011 -->
<!--
TODO
@@ -5265,8 +5265,7 @@ The following minimal alignment properties are guaranteed:
<h2 id="Implementation_differences">Implementation differences - TODO</h2>
<ul>
<li><code>len(a)</code> is only a constant if <code>a</code> is a (qualified) identifier denoting an array or pointer to an array.</li>
- <li><code>nil</code> maps are not treated like empty maps.</li>
- <li>Trying to send/receive from a <code>nil</code> channel causes a run-time panic.</li>
- <li><code>unsafe.Alignof</code>, <code>unsafe.Offsetof</code>, and <code>unsafe.Sizeof</code> return an <code>int</code>.</li>
+ <li>In gccgo, <code>nil</code> maps are not treated like empty maps.</li>
+ <li>In gccgo, trying to send/receive from a <code>nil</code> channel causes a run-time panic.</li>
</ul>
</span>