Age | Commit message (Collapse) | Author | Files | Lines |
|
x.go:13: cannot use t (type T) as type Reader in assignment:
T does not implement Reader (Read method requires pointer receiver)
x.go:19: cannot use q (type Q) as type Reader in assignment:
Q does not implement Reader (missing Read method)
have read()
want Read()
x.go:22: cannot use z (type int) as type Reader in assignment:
int does not implement Reader (missing Read method)
x.go:24: too many arguments to conversion to complex: complex(1, 3)
R=ken2
CC=golang-dev
http://codereview.appspot.com/1736041
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1677047
|
|
R=rsc
TBR=rsc
CC=golang-dev
http://codereview.appspot.com/1675047
|
|
various cleanup, deleting unused code
R=ken2
CC=golang-dev
http://codereview.appspot.com/1663041
|
|
Cleans up a few other corner cases too.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1592045
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/1597044
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1627042
|
|
There's only one Go object file per package now,
so there's no need to parse the metadata and merge
metadata from multiple files. Just save the original
and use it as __.PKGDEF verbatim.
R=r
CC=golang-dev
http://codereview.appspot.com/1647042
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1597043
|
|
This avoids a crash when using cgo where glibc's malloc thinks
that it can use some of the memory following the symbol table.
This fails because the symbol table is mapped read-only, which
affects the whole page.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1616042
|
|
R=golang-dev, r
CC=golang-dev
http://codereview.appspot.com/1636043
|
|
* 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
http://codereview.appspot.com/1619042
|
|
* 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 issue 840.
Fixes issue 830.
Fixes issue 778.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1303042
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1621041
|
|
Fixes issue 844.
R=ken2, rsc, ken3
CC=golang-dev
http://codereview.appspot.com/1593041
|
|
Fixes issue 827.
R=ken2
CC=golang-dev, rsc
http://codereview.appspot.com/1592041
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1514041
Committer: Russ Cox <rsc@golang.org>
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1442042
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1395041
Committer: Russ Cox <rsc@golang.org>
|
|
It turns out that _cgo_malloc is used, via cmalloc in
runtime/cgocall.c, which is called by code generated by out.go
for the ·_C_CString function. I can't find a call to
_cgo_free, but given _cgo_malloc we might as well keep
_cgo_free. This patch fixes it so that it should work on
amd64.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1399041
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/1326042
|
|
Fixes issue 806.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1281042
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1284041
|
|
Fixes issue 771.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1267042
|
|
Fixes issue 807.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1283041
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1278042
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1220046
|
|
Fixes issue 808.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1273042
|
|
Fixes issue 804.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1224045
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1280041
|
|
R=dho
CC=golang-dev
http://codereview.appspot.com/1257043
|
|
R=rsc, iant
CC=golang-dev, graeme.perrow
http://codereview.appspot.com/1193046
Committer: Russ Cox <rsc@golang.org>
|
|
tweaks & tests of last bug fix too.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1207044
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1243044
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1198046
|
|
Fixes issue 793.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1249043
|
|
cannot allocate an audomatic temp
while real registers are allocated.
there is a chance that the automatic
will be allocated to one of the
allocated registers. the fix is to
not registerize such variables.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1202042
|
|
Previously the compiler would just emit "internal compiler error" when
trying to compute the remainder of floats or complex types.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1243041
Committer: Russ Cox <rsc@golang.org>
|
|
has no access to yylex)
R=ken2, ken3
CC=golang-dev
http://codereview.appspot.com/813047
Committer: Ken Thompson <ken@golang.org>
|
|
R=adg
CC=golang-dev
http://codereview.appspot.com/1228041
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1138041
|
|
external variable assignements.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1094041
|
|
Fixes issue 692.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1092041
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1067042
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/1046042
|
|
TBR=r
CC=golang-dev
http://codereview.appspot.com/1063042
|
|
Fixes issue 589.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1032044
|
|
Fixes issue 589.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1043042
|
|
Fixes issue 662.
R=ken2
CC=golang-dev
http://codereview.appspot.com/978043
|
|
Fixes issue 746.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1040042
|