- 02 Feb, 2010 19 commits
-
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/199066
-
Russ Cox authored
Fixes #287. R=ken2 CC=golang-dev https://golang.org/cl/199057
-
Nigel Tao authored
R=r, rsc CC=golang-dev https://golang.org/cl/199052
-
Ian Lance Taylor authored
bug249.go:10:5: error: incompatible type in initialization bug249.go:26:5: error: incompatible type in initialization R=rsc CC=golang-dev https://golang.org/cl/198058
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/198057
-
Russ Cox authored
R=r CC=Charlie Dorian, golang-dev https://golang.org/cl/199054
-
Charles L. Dorian authored
Added special cases to comments for asin.go and fabs.go. Added Trunc() to floor.go and floor_386.s. Fixed formatting error in hypot_386.s Added new functions Acosh, Asinh, Atanh, Copysign, Erf, Erfc, Expm1, and Log1p. Added 386 FPU version of Fmod. Added tests, benchmarks, and precision to expected results in all_test.go. Edited makefile so it all compiles. R=rsc CC=golang-dev https://golang.org/cl/195052
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/198053
-
Rob Pike authored
R=rsc, gri CC=golang-dev https://golang.org/cl/198050
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/198048
-
Russ Cox authored
* renamed channels to say what gets sent * use channel closed status instead of racy check of boolean R=nigeltao_golang CC=golang-dev https://golang.org/cl/196065
-
Rob Pike authored
Fixes #574. R=rsc CC=golang-dev https://golang.org/cl/196056
-
Ian Lance Taylor authored
import1.go:12:8: error: redefinition of ‘bufio’ import1.go:11:8: note: previous definition of ‘bufio’ was here import1.go:16:2: error: redefinition of ‘fmt’ import1.go:15:2: note: previous definition of ‘fmt’ was here import1.go:11:8: error: imported and not used: bufio R=rsc CC=golang-dev https://golang.org/cl/194165
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/199047
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/198046
-
Ian Lance Taylor authored
I have to admit that "cannot use type p.T as type p.T" is a bit weak. 8g gives a similar error ("cannot use v1 (type p.T) as type p.T in assignment"). bug3.go:37:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:38:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:43:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:44:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different parameter types)) bug3.go:49:5: error: incompatible types in assignment (cannot use type p.T as type p.T) bug3.go:50:5: error: incompatible types in assignment (cannot use type p.T as type p.T) bug3.go:55:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:56:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:57:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:58:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:59:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:60:5: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:61:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) bug3.go:62:6: error: incompatible types in assignment (incompatible type for method ‘M’ (different parameter types)) R=rsc CC=golang-dev https://golang.org/cl/199044
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/199046
-
Robert Griesemer authored
Fixes #571. R=rsc CC=golang-dev https://golang.org/cl/198045
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/199045
-
- 01 Feb, 2010 11 commits
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/197043
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/199042
-
Russ Cox authored
R=agl1 CC=golang-dev https://golang.org/cl/196091
-
Petar Maymounkov authored
R=rsc, rsc1 CC=golang-dev https://golang.org/cl/195068
-
Russ Cox authored
more to come, but should suffice for Printf work. R=ken2 CC=golang-dev https://golang.org/cl/197044
-
Rob Pike authored
R=rsc, iant, gri CC=golang-dev https://golang.org/cl/196075
-
Russ Cox authored
No longer a distinct type; now a property of func types. R=ken2 CC=golang-dev https://golang.org/cl/197042
-
Rob Pike authored
break the list into two pieces R=golang-dev CC=golang-dev https://golang.org/cl/196088
-
Rob Pike authored
Fixes buggy links in the devel subdirectory. Code from rsc; tested by me. R=rsc, gri CC=golang-dev https://golang.org/cl/197041
-
Rob Pike authored
R=rsc, iant CC=golang-dev https://golang.org/cl/196087
-
Ian Lance Taylor authored
I got it wrong because gccgo was incorrectly failing to clear the value when a nonblocking receive did not receive anything. R=rsc CC=golang-dev https://golang.org/cl/194161
-
- 30 Jan, 2010 9 commits
-
-
Ian Lance Taylor authored
bug238.go:11:7: error: invalid constant type bug238.go:12:7: error: invalid constant type bug238.go:13:7: error: invalid constant type bug238.go:14:7: error: invalid constant type bug238.go:15:7: error: invalid constant type bug238.go:16:7: error: invalid constant type bug238.go:17:7: error: invalid constant type R=rsc CC=golang-dev https://golang.org/cl/194159
-
Ian Lance Taylor authored
8g: runtime.go:19: cannot refer to unexported name runtime.printbool gccgo: runtime.go:19:10: error: invalid reference to unexported identifier ‘runtime.printbool’ R=rsc CC=golang-dev https://golang.org/cl/194157
-
Ian Lance Taylor authored
bug231.go:20:4: error: incompatible types in assignment (type has no methods) R=rsc CC=golang-dev https://golang.org/cl/194156
-
Ian Lance Taylor authored
bug228.go:11:25: error: invalid use of ‘...’ bug228.go:13:13: error: ‘...’ only permits one name bug228.go:15:20: error: ‘...’ must be last parameter bug228.go:17:7: error: expected type bug228.go:19:8: error: expected type R=rsc CC=golang-dev https://golang.org/cl/196077
-
Nigel Tao authored
on the wire. R=rsc CC=golang-dev https://golang.org/cl/194146
-
Nigel Tao authored
R=rsc, r CC=golang-dev https://golang.org/cl/194131
-
Petar Maymounkov authored
Fixes #566. R=rsc CC=golang-dev https://golang.org/cl/194074
-
Ian Lance Taylor authored
Fixes #485. R=r CC=golang-dev https://golang.org/cl/196071
-
Ian Lance Taylor authored
Update the documents accordingly. Also document gccgo specific options. R=r CC=golang-dev https://golang.org/cl/196070
-
- 29 Jan, 2010 1 commit
-
-
Rob Pike authored
Fixes #576. R=rsc, rog CC=golang-dev https://golang.org/cl/196061
-