An error occurred fetching the project authors.
- 07 Jun, 2011 1 commit
-
-
Caine Tighe authored
R=rsc, gri CC=golang-dev https://golang.org/cl/4564048
-
- 03 Jun, 2011 1 commit
-
-
Luuk van Dijk authored
also inlined a typechecking function in dcl away. R=rsc CC=golang-dev https://golang.org/cl/4550115
-
- 02 Jun, 2011 1 commit
-
-
Luuk van Dijk authored
R=rsc CC=golang-dev https://golang.org/cl/4528116
-
- 28 Apr, 2011 1 commit
-
-
Lorenzo Stoakes authored
Previously, whether declaring a type which copied the structure of a type it was referenced in via a pointer field would work depended on whether you declared it before or after the type it copied, e.g. type T2 T1; type T1 struct { F *T2 } would work, however type T1 struct { F *T2 }; type T2 T1 wouldn't. Fixes #667. R=rsc CC=golang-dev https://golang.org/cl/4313064
-
- 23 Apr, 2011 1 commit
-
-
Russ Cox authored
Fixes #1474. R=ken2 CC=golang-dev https://golang.org/cl/4432061
-
- 09 Apr, 2011 1 commit
-
-
Russ Cox authored
The ld time was dominated by symbol table processing, so * increase hash table size * emit fewer symbols in gc (just 1 per string, 1 per type) * add read-only lookup to avoid creating spurious symbols * add linked list to speed whole-table traversals Breaks dwarf generator (no idea why), so disable dwarf. Reduces time for 6l to link godoc by 25%. R=ken2 CC=golang-dev https://golang.org/cl/4383047
-
- 11 Mar, 2011 1 commit
-
-
Russ Cox authored
R=ken2, ken3 CC=golang-dev https://golang.org/cl/4259064
-
- 03 Feb, 2011 2 commits
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/4128054
-
Russ Cox authored
The object files begin with a header that is $GOARCH on a line by itself. This CL changes that header to go object $GOOS $GOARCH release.2011-01-01 4567+ where the final two fields are the most recent release tag and the current hg version number. All objects imported into a Go compilation or linked into an executable must have the same header line, and that header line must match the compiler and linker versions. The effect of this will be that if you update and run all.bash and then try to link in objects compiled with an earlier version of the compiler (or invoke the wrong version of the compiler), you will get an error showing the different headers instead of perhaps silent incompatibility. Normal usage with all.bash should be unaffected, because all.bash deletes all the object files in $GOROOT/pkg/$GOOS_$GOARCH and cleans all intermediate object files before starting. This change is intended to diagnose stale objects arising when users maintaining alternate installation directories forget to rebuild some of their files after updating. It should help make the adoption of $GOPATH (CL 3780043) less error-prone. R=ken2, r CC=golang-dev https://golang.org/cl/4023063
-
- 20 Jan, 2011 1 commit
-
-
Russ Cox authored
rename cmplx -> complex R=ken2 CC=golang-dev https://golang.org/cl/4071041
-
- 13 Dec, 2010 1 commit
-
-
Russ Cox authored
No semantic changes here, but working toward being able to align structs based on the maximum alignment of the fields inside instead of having a fixed alignment for all structs (issue 482). R=ken2 CC=golang-dev https://golang.org/cl/3617041
-
- 04 Nov, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/2907041
-
- 28 Oct, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/2757042
-
- 30 Sep, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/2338041
-
- 28 Sep, 2010 1 commit
-
-
Russ Cox authored
R=ken2, gri CC=golang-dev https://golang.org/cl/2208053
-
- 27 Sep, 2010 1 commit
-
-
Russ Cox authored
Fixes #1142. R=ken2 CC=golang-dev https://golang.org/cl/2218046
-
- 24 Sep, 2010 1 commit
-
-
Russ Cox authored
was x.go:2: syntax error: unexpected $undefined now x.go:2: syntax error: unexpected \ R=ken2 CC=golang-dev https://golang.org/cl/2267044
-
- 16 Sep, 2010 2 commits
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/2214042
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/2209042
-
- 26 Jul, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/1882043
-
- 21 Jul, 2010 1 commit
-
-
Russ Cox authored
Fixes #935. Fixes #936. Fixes #941. R=ken2 CC=golang-dev https://golang.org/cl/1867042
-
- 17 Jul, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/1872041
-
- 16 Jul, 2010 3 commits
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/1862044
-
Ken Thompson authored
//line number file to //line file:number R=rsc CC=golang-dev https://golang.org/cl/1868041
-
Ken Thompson authored
//line 10 units.y which is equiv to c #line 10 units.y the purpose is to generate diagnostics that correctly point to preprocessed source. R=rsc CC=golang-dev https://golang.org/cl/1863042
-
- 15 Jul, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/1742044
-
- 12 Jul, 2010 1 commit
-
-
Rob Pike authored
Fixes #912. R=rsc CC=golang-dev https://golang.org/cl/1819041
-
- 14 Jun, 2010 1 commit
-
-
Russ Cox authored
various cleanup, deleting unused code R=ken2 CC=golang-dev https://golang.org/cl/1663041
-
- 12 Jun, 2010 1 commit
-
-
Russ Cox authored
Cleans up a few other corner cases too. R=ken2 CC=golang-dev https://golang.org/cl/1592045
-
- 11 Jun, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/1597043
-
- 09 Jun, 2010 2 commits
-
-
Russ Cox authored
* disallow surrogate pair runes. * diagnose impossible type assertions * eliminate another static buffer. * do not overflow lexbuf. * add -u flag to disable package unsafe. R=ken2 CC=golang-dev https://golang.org/cl/1619042
-
Russ Cox authored
* Code for assignment, conversions now mirrors spec. * Changed some snprint -> smprint. * Renamed runtime functions to separate interface conversions from type assertions: convT2I, assertI2T, etc. * Correct checking of \U sequences. Fixes #840. Fixes #830. Fixes #778. R=ken2 CC=golang-dev https://golang.org/cl/1303042
-
- 08 Jun, 2010 1 commit
-
-
Robert Griesemer authored
Fixes #827. R=ken2 CC=golang-dev, rsc https://golang.org/cl/1592041
-
- 21 May, 2010 1 commit
-
-
Russ Cox authored
Fixes #793. R=ken2 CC=golang-dev https://golang.org/cl/1249043
-
- 03 May, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/1067042
-
- 28 Apr, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/944043
-
- 27 Apr, 2010 1 commit
-
-
Russ Cox authored
Fixes #732. R=ken2 CC=golang-dev https://golang.org/cl/956050
-
- 11 Apr, 2010 1 commit
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/902044
-
- 31 Mar, 2010 1 commit
-
-
Russ Cox authored
R=ken2, r, ken3 CC=golang-dev https://golang.org/cl/831042
-
- 30 Mar, 2010 1 commit
-
-
Russ Cox authored
main semantic change is to enforce single argument to panic. runtime: change to 1-argument panic. use String method on argument if it has one. R=ken2, r CC=golang-dev https://golang.org/cl/812043
-