<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch weekly.2010-05-04</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=weekly.2010-05-04</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=weekly.2010-05-04'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2010-05-05T02:12:04Z</updated>
<entry>
<title>release.2010-05-04</title>
<updated>2010-05-05T02:12:04Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2010-05-05T02:12:04Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=174ca90b2cad59b1525e0db85ffe25aa3f8e75dc'/>
<id>urn:sha1:174ca90b2cad59b1525e0db85ffe25aa3f8e75dc</id>
<content type='text'>
R=r, rsc
CC=golang-dev
https://golang.org/cl/1094043
</content>
</entry>
<entry>
<title>go spec: clarification of make arguments,</title>
<updated>2010-05-05T00:31:40Z</updated>
<author>
<name>Robert Griesemer</name>
<email>gri@golang.org</email>
</author>
<published>2010-05-05T00:31:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=df674ffb43628bde1221f3a34c98f91f44528b97'/>
<id>urn:sha1:df674ffb43628bde1221f3a34c98f91f44528b97</id>
<content type='text'>
specification of runtime exceptions for
make and division by zero

R=r, rsc, ken2, iant
CC=golang-dev
https://golang.org/cl/1081041
</content>
</entry>
<entry>
<title>allow data statements for simple</title>
<updated>2010-05-04T05:51:30Z</updated>
<author>
<name>Ken Thompson</name>
<email>ken@golang.org</email>
</author>
<published>2010-05-04T05:51:30Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=a3a0a5fdc3bc2debdc5fda4c11fc013076795df4'/>
<id>urn:sha1:a3a0a5fdc3bc2debdc5fda4c11fc013076795df4</id>
<content type='text'>
external variable assignements.

R=rsc
CC=golang-dev
https://golang.org/cl/1094041
</content>
</entry>
<entry>
<title>big: completed set of Int division routines &amp; cleanups</title>
<updated>2010-05-04T01:48:05Z</updated>
<author>
<name>Robert Griesemer</name>
<email>gri@golang.org</email>
</author>
<published>2010-05-04T01:48:05Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=b9caa4ac56f306e4195dcbf5db1afd831a6049fa'/>
<id>urn:sha1:b9caa4ac56f306e4195dcbf5db1afd831a6049fa</id>
<content type='text'>
- renamed Len -&gt; BitLen, simplified implementation
- renamed old Div, Mod, DivMod -&gt; Que, Rem, QuoRem
- implemented Div, Mod, DivMod (Euclidian definition, more
  useful in a mathematical context)
- fixed a bug in Exp (-0 was possible)
- added extra tests to check normalized results everywhere
- uniformly set Int.neg flag at the end of computations
- minor cosmetic cleanups
- ran all tests

R=rsc
CC=golang-dev
https://golang.org/cl/1091041
</content>
</entry>
<entry>
<title>gc: bug264</title>
<updated>2010-05-04T00:51:48Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-05-04T00:51:48Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=32df67889433b43f0e20c89dec5a8f88920bddcf'/>
<id>urn:sha1:32df67889433b43f0e20c89dec5a8f88920bddcf</id>
<content type='text'>
Fixes #692.

R=ken2
CC=golang-dev
https://golang.org/cl/1092041
</content>
</entry>
<entry>
<title>test/bench: import new fasta C reference, update Go, optimizations</title>
<updated>2010-05-04T00:47:59Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-05-04T00:47:59Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=f8f83e80b1218a1c49f7c85501ebe49ed993d2ff'/>
<id>urn:sha1:f8f83e80b1218a1c49f7c85501ebe49ed993d2ff</id>
<content type='text'>
OLD fasta -n 25000000
	gcc -O2 fasta.c	7.59u 0.06s 7.74r
	gc fasta	9.54u 0.15s 9.84r
	gc_B fasta	9.48u 0.10s 9.62r

NEW fasta -n 25000000
	gcc -O2 fasta.c	2.59u 0.02s 2.66r
	gc fasta	3.00u 0.03s 3.09r
	gc_B fasta	2.72u 0.03s 2.81r

R=r
CC=golang-dev
https://golang.org/cl/1054041
</content>
</entry>
<entry>
<title>runtime, strconv: tiny cleanups</title>
<updated>2010-05-04T00:47:40Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-05-04T00:47:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=7d7ebd2fe1ff7bc081accbadac1d80c5b6352624'/>
<id>urn:sha1:7d7ebd2fe1ff7bc081accbadac1d80c5b6352624</id>
<content type='text'>
R=r
CC=golang-dev
https://golang.org/cl/1081042
</content>
</entry>
<entry>
<title>test: test of static initialization (fails)</title>
<updated>2010-05-04T00:21:49Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-05-04T00:21:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=a9425c70aa85872371651a38209ef9db6acb8e35'/>
<id>urn:sha1:a9425c70aa85872371651a38209ef9db6acb8e35</id>
<content type='text'>
R=ken2
CC=golang-dev
https://golang.org/cl/1090041
</content>
</entry>
<entry>
<title>gc: bug267</title>
<updated>2010-05-03T22:29:59Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-05-03T22:29:59Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=b5f54db35927cf1eee7f70a1a8d1d3a13e8578ab'/>
<id>urn:sha1:b5f54db35927cf1eee7f70a1a8d1d3a13e8578ab</id>
<content type='text'>
R=ken2
CC=golang-dev
https://golang.org/cl/1067042
</content>
</entry>
<entry>
<title>gc: error for nested functions, one semicolon problem</title>
<updated>2010-05-03T22:02:32Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2010-05-03T22:02:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=371b77ad20a1a88820d6b75d184a36c1156f3003'/>
<id>urn:sha1:371b77ad20a1a88820d6b75d184a36c1156f3003</id>
<content type='text'>
R=ken2
CC=golang-dev
https://golang.org/cl/1046042
</content>
</entry>
</feed>
