Age | Commit message (Collapse) | Author | Files | Lines |
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/223096
Committer: Russ Cox <rsc@golang.org>
|
|
check that NOSPLIT functions don't use too much stack.
correct some missing NOSPLITs in the runtime library.
Fixes bug reported in
https://groups.google.com/group/golang-nuts/t/efff68b73941eccf
R=ken2
CC=golang-dev
http://codereview.appspot.com/236041
|
|
Also added expm1_386 and remainder_386; shortened exp_386
R=rsc
CC=golang-dev
http://codereview.appspot.com/217109
Committer: Russ Cox <rsc@golang.org>
|
|
Update issue 538.
R=r
CC=golang-dev
http://codereview.appspot.com/229045
|
|
Pointed out by Scott Schwartz.
Fixes issue 637.
R=scotts
CC=golang-dev
http://codereview.appspot.com/225042
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/229046
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/224096
|
|
Fixes issue 472.
R=golang-dev
CC=golang-dev
http://codereview.appspot.com/223108
|
|
Set defaults to the same values as various C DNS resolver libraries.
Use the timeout value from the configuration.
Fixes issue 632.
R=rsc
CC=golang-dev
http://codereview.appspot.com/223094
|
|
getting close.
R=rsc
CC=golang-dev
http://codereview.appspot.com/224105
|
|
- gofmt -w src misc
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/223101
|
|
Fixes issue 622.
R=rsc
CC=golang-dev
http://codereview.appspot.com/224084
|
|
- gofmt -w src misc
- looking for feedback
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/223076
|
|
htmlgen.go
R=rsc, adg
CC=golang-dev
http://codereview.appspot.com/224087
Committer: Andrew Gerrand <adg@golang.org>
|
|
May address issue 624.
R=rsc
CC=golang-dev
http://codereview.appspot.com/223083
|
|
that pad() still counts bytes, but it's currently only used for
1 byte runes.
Fixes issue 612.
R=r
CC=golang-dev
http://codereview.appspot.com/217064
Committer: Rob Pike <r@golang.org>
|
|
R=wcn
CC=golang-dev
http://codereview.appspot.com/223075
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/217116
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/223071
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/223070
|
|
This permits more flexibility with cgo and swig in cases where
the program is run on a machine other than the one on which it
is built. Rather than storing the absolute path to the shared
library in the DT_NEEDED entry, we can store just the name,
and let the dynamic linker find it using DT_RUNPATH or the
LD_LIBRARY_PATH environment variable.
R=rsc
CC=golang-dev
http://codereview.appspot.com/223068
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/223069
|
|
current line
Background: This didn't matter until recently, because '\n' don't appear as token starts
in source code and thus the exact position was irrelevant (and set as was easiest in the
code). With auto semicolon insertion, a virtual semicolon may be inserted when a '\n' is
seen. The position of the semicolon is the position of the '\n'. Without this fix, these
semicolons appeared on the next line instead of the line where they were inserted. This
affected the association of comments to declarations in the parser. As a result, some
lead comments where considered line comments, not collected in the ast, and not shown in
godoc pages. (This affected only godoc pages, not gofmt-formatted programs).
Fixes issue 592.
R=rsc
CC=golang-dev
http://codereview.appspot.com/224068
|
|
Adds tests and fixes for two cases that fail with the current release.
R=golang-dev, r
CC=golang-dev
http://codereview.appspot.com/217115
Committer: Rob Pike <r@golang.org>
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/223059
|
|
- gofmt -w src misc
- improves several lists and fixes minor degradation introduced
with the fix for issue 628
- removed some dead code (stringList)
R=rsc
CC=golang-dev
http://codereview.appspot.com/223058
|
|
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench
gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench
delete unused imports
R=r
CC=golang-dev
http://codereview.appspot.com/224062
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/224063
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/224060
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/224061
Committer: Russ Cox <rsc@golang.org>
|
|
- applied gofmt to src and misc
Note: This fix improved formatting of src/pkg/math/all_test.go but leads
to a degradation in src/pkg/exp/4s/xs.go. The latter happened to "work"
before accidentally. Fixing the alignment in that case in general will
be a separate CL.
Fixes issue 628.
R=rsc
CC=golang-dev
http://codereview.appspot.com/223054
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/224057
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/224053
|
|
(per suggestion from Heresy.Mc@gmail.com)
R=rsc
CC=golang-dev
http://codereview.appspot.com/223052
|
|
path.Match() errors out when testing "*x" against "xxx"
because it matches the star non-greedily. Ensure that
the last chunk consumes the rest of the name.
R=r, rsc
CC=golang-dev
http://codereview.appspot.com/223050
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/224051
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/223044
|
|
This permits cgo generated code to use these header files even
if the Go sources are not around.
R=rsc
CC=golang-dev
http://codereview.appspot.com/224045
|
|
- always include position information about opening/closing parens/braces
- replace uses of []*ast.Field with *ast.FieldList
Fixes issue 473.
R=rsc
CC=golang-dev
http://codereview.appspot.com/223043
|
|
R=eridius, r, rog
CC=golang-dev
http://codereview.appspot.com/217088
|
|
default to HTTP/1.1
R=petar-m
CC=golang-dev
http://codereview.appspot.com/224041
|
|
- add extra test cases to go/printer tests
- apply gofmt to src and misc
R=rsc
CC=golang-dev
http://codereview.appspot.com/223041
|
|
- remove several TODOs
- as a side-effect, comment stylers are now used always and comments
will be properly colored in godoc pkg documentation pages (and not
only when looking at source text)
R=rsc
CC=golang-dev
http://codereview.appspot.com/222041
|
|
Replaces stale references to modes.go.
R=golang-dev, agl, rsc
CC=golang-dev
http://codereview.appspot.com/218071
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 618.
R=rsc
CC=golang-dev
http://codereview.appspot.com/217094
|
|
Fixes issue 420.
R=r
CC=golang-dev
http://codereview.appspot.com/218065
|
|
has been flaking on various architectures.
not sure why, but doesn't seem to be Go's fault.
Fixes issue 617.
R=r
CC=golang-dev
http://codereview.appspot.com/217093
|
|
Added lgamma.go, tests and special cases.
R=rsc
CC=golang-dev
http://codereview.appspot.com/217060
Committer: Russ Cox <rsc@golang.org>
|
|
R=adg
CC=golang-dev
http://codereview.appspot.com/210047
|
|
minor unrelated cleanups
R=rsc
CC=golang-dev
http://codereview.appspot.com/217086
|