Age | Commit message (Collapse) | Author | Files | Lines |
|
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
|
|
Fixes issue 755.
R=ken2
CC=golang-dev
http://codereview.appspot.com/965047
|
|
R=rsc, Joe Poirier
CC=golang-dev
http://codereview.appspot.com/1015043
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 749.
R=ken2
CC=golang-dev
http://codereview.appspot.com/963043
|
|
Fixes issue 745.
R=ken2
CC=golang-dev
http://codereview.appspot.com/1008045
|
|
5l, 6l, 8l: change ELF header so that strip doesn't destroy binary
Fixes issue 261.
R=iant, r
CC=golang-dev
http://codereview.appspot.com/994044
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/944043
|
|
Fixes issue 732.
R=ken2
CC=golang-dev
http://codereview.appspot.com/956050
|
|
This fixes a crash seen when viewing a directory list.
Fixes issue 747.
R=gri
CC=golang-dev, rsc
http://codereview.appspot.com/1010042
Committer: Robert Griesemer <gri@golang.org>
|
|
R=ken2, r, ken3
CC=golang-dev
http://codereview.appspot.com/1006041
|
|
R=adg, gri
CC=golang-dev, r
http://codereview.appspot.com/1008042
|
|
Enable package tests for Native Client build.
R=r
CC=golang-dev
http://codereview.appspot.com/957042
|
|
Due to page boundary rounding, the header would have
been loaded as part of the text segment already, but this
change placates the "paxctl" tool on so-called hardened
Linux distributions (as if normal distributions weren't already
hard enough to use).
R=r
CC=golang-dev
http://codereview.appspot.com/954041
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/955041
|
|
Fixes issue 729.
R=ken2
CC=golang-dev
http://codereview.appspot.com/875048
|
|
$ godoc xml | grep Copy\(\)
func (c CharData) Copy() CharData
func (c Comment) Copy() Comment
func (d Directive) Copy() Directive
func (p ProcInst) Copy() ProcInst
func (e StartElement) Copy() StartElement
--------------------------------------------
$ godoc -src xml | grep Copy\(\)
func (c CharData) Copy() CharData
--------------------------------------------
$ godoc -src xml Copy
func (c CharData) Copy() CharData { return CharData(makeCopy(c)) }
--------------------------------------------
The command "godoc -src pkg_name" should output the interface of the named package, but it excludes all duplicate entries. Also the command "godoc -src pkg_name method_name" will output the source code only for one method even if there are more of them with the same name in the same package. This patch set fixes this issue.
R=gri
CC=golang-dev
http://codereview.appspot.com/883051
Committer: Robert Griesemer <gri@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/912041
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/915041
Committer: Russ Cox <rsc@golang.org>
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/891050
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/840043
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/902044
|