- 04 Feb, 2013 15 commits
-
-
Alan Donovan authored
R=iant, gri, iant, rogpeppe CC=golang-dev https://golang.org/cl/7196053
-
Russ Cox authored
Was not re-walking the new AND node, so that its ullman count was wrong, so that the code generator attempted to store values in registers across the call. Fixes #4752. R=ken2 CC=golang-dev https://golang.org/cl/7288054
-
Alex Brainman authored
R=golang-dev, bradfitz, dave CC=golang-dev https://golang.org/cl/7273046
-
Russ Cox authored
Fixes #4090. R=golang-dev, iant, bradfitz, dsymonds CC=golang-dev https://golang.org/cl/7229070
-
Russ Cox authored
Was incorrectly discarding the offending text in some cases. Fixes #4493. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7277050
-
Andrew Gerrand authored
Missed this review comment. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/7229084
-
Russ Cox authored
In cmd/go's 'go help testflag': * Rewrite list of flags to drop test. prefix on every name. * Sort list of flags. * Add example of using -bench to match all benchmarks. In testing: * Remove mention of undefined 'CPU group' concept. Fixes #4488. Fixes #4508. R=adg CC=golang-dev https://golang.org/cl/7288053
-
Nigel Tao authored
R=gri, rsc CC=golang-dev https://golang.org/cl/7280044
-
Andrew Gerrand authored
Fixes #3696. R=rsc CC=golang-dev https://golang.org/cl/7133051
-
Russ Cox authored
* Document Parse's zone interpretation. * Add ParseInLocation (API change). * Recognize "wrong" time zone names, like daylight savings time in winter. * Disambiguate time zone names using offset (like winter EST vs summer EST in Sydney). The final two are backwards-incompatible changes, but I believe they are both buggy behavior in the Go 1.0 versions; the old results were more wrong than the new ones. Fixes #3604. Fixes #3653. Fixes #4001. R=adg CC=golang-dev https://golang.org/cl/7288052
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7284047
-
Russ Cox authored
Code fix by Alex Bramley. Fixes #4064. R=golang-dev, adg CC=golang-dev https://golang.org/cl/7289049
-
Andrew Gerrand authored
R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/7278050
-
Alex Brainman authored
This only affects code (with exception of lookupProtocol) that is only executed on older versions of Windows. R=rsc, bradfitz CC=golang-dev https://golang.org/cl/7293043
-
Robin Eklind authored
Remove the previous comment examples. R=golang-dev, minux.ma, adg CC=golang-dev https://golang.org/cl/7220048
-
- 03 Feb, 2013 17 commits
-
-
Russ Cox authored
* Avoid treating CALL fn(SB) as justification for introducing and tracking a registerized variable for fn(SB). * Remove USED(n) after declaration and zeroing of n. It was left over from when the compiler emitted more aggressive set and not used errors, and it was keeping the optimizer from removing a redundant zeroing of n when n was a pointer or integer variable. Update #597. R=ken2 CC=golang-dev https://golang.org/cl/7277048
-
Brad Fitzpatrick authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/7292043
-
Russ Cox authored
Fixes #4085. R=ken2 CC=golang-dev https://golang.org/cl/7277047
-
Russ Cox authored
It accepts all the build flags. Say that instead of making a copy that will go stale. Fixes #4742. R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7229081
-
Shenghou Ma authored
R=golang-dev, dave CC=golang-dev https://golang.org/cl/7261043
-
Shivakumar GN authored
(Still valid XML.) Fixes #3354. R=golang-dev, dave CC=golang-dev https://golang.org/cl/7288047
-
Russ Cox authored
Fixes #4748. R=ken2 CC=golang-dev https://golang.org/cl/7261044
-
Russ Cox authored
Unify with array/slice errors, which were already good. Fixes #4232. R=ken2 CC=golang-dev https://golang.org/cl/7271046
-
Russ Cox authored
Fixes #3915. Fixes #3923. R=ken2 CC=golang-dev https://golang.org/cl/7281044
-
Russ Cox authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/7275045
-
Russ Cox authored
Those symbols are only allowed during imports; the parser may expect them but saying that doesn't help users. Fixes #3434. R=ken2 CC=golang-dev https://golang.org/cl/7277045
-
Russ Cox authored
More efficient, less racy code. Fixes #4014. R=ken2, ken CC=golang-dev https://golang.org/cl/7275047
-
Russ Cox authored
For consistency with conversions that look like function calls, conversions that don't look like function calls now allow an optional trailing comma. That is, int(x,) has always been syntactically valid. Now []int(x,) is valid too. Fixes #4162. R=ken2 CC=golang-dev https://golang.org/cl/7288045
-
Russ Cox authored
Fixes #4618. R=ken2 CC=golang-dev https://golang.org/cl/7278048
-
Russ Cox authored
Fixes #4667. R=ken2 CC=golang-dev https://golang.org/cl/7275046
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/7276048
-
Kyle Lemons authored
This CL also replaces similar loops in other stdlib package tests with calls to AllocsPerRun. Fixes #4461. R=minux.ma, rsc CC=golang-dev https://golang.org/cl/7002055
-
- 02 Feb, 2013 8 commits
-
-
Shenghou Ma authored
Fixes #3202. (Or rather, work around issue 3202) R=alex.brainman, rsc CC=golang-dev https://golang.org/cl/7202053
-
Russ Cox authored
Add Order field to doc.Example and write doc comments there. Fixes #4662. R=golang-dev, iant CC=golang-dev https://golang.org/cl/7229071
-
Ian Lance Taylor authored
Fixes #4743. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7284044
-
Shenghou Ma authored
Fixes #4686. R=alex.brainman, rsc CC=golang-dev https://golang.org/cl/7174047
-
Shenghou Ma authored
R=golang-dev, dave, alex.brainman CC=golang-dev https://golang.org/cl/7133064
-
Daniel Morsing authored
Fixes #4620. R=rsc CC=golang-dev https://golang.org/cl/7241051
-
Russ Cox authored
Expressions involving nil, even if they can be evaluated at compile time, do not count as Go constants and cannot be used in const initializers. Fixes #4673. Fixes #4680. R=ken2 CC=golang-dev https://golang.org/cl/7278043
-
Russ Cox authored
Fixes #4452. R=ken2 CC=golang-dev https://golang.org/cl/7241065
-