Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-04-06 | Imported Upstream version 1upstream/1 | Ondřej Surý | 43 | -273/+407 | |
2011-09-13 | Imported Upstream version 60upstream/60 | Ondřej Surý | 41 | -0/+5408 | |
2011-09-13 | Imported Upstream version 60 | Ondřej Surý | 41 | -5408/+0 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 1 | -1/+1 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 1 | -3/+3 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 1 | -97/+0 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 10 | -102/+99 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 5 | -7/+478 | |
2010-06-23 | gc: fix crash for nested complex division | Russ Cox | 1 | -0/+6 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1720043 | |||||
2010-06-21 | reflect: add Type.Bits method, add tags to prohibit conversions | Russ Cox | 1 | -3/+0 | |
gob: substitute slice for map R=r CC=golang-dev http://codereview.appspot.com/1699045 | |||||
2010-06-08 | misc cleanup: gofmt + &x -> x[0:] conversion | Russ Cox | 1 | -3/+3 | |
R=gri CC=golang-dev http://codereview.appspot.com/1620042 | |||||
2010-03-30 | single argument panic | Russ Cox | 3 | -306/+301 | |
note that sortmain.go has been run through hg gofmt; only the formatting of the day initializers changed. i'm happy to revert that formatting if you'd prefer. stop on error in doc/progs/run R=r CC=golang-dev http://codereview.appspot.com/850041 | |||||
2010-03-24 | delete all uses of panicln by rewriting them using panic or, | Rob Pike | 11 | -1287/+2007 | |
in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041 | |||||
2010-03-09 | 1. decommit complex(float) conversion | Ken Thompson | 3 | -6/+58 | |
2. add complex algorithm for map/chan 3. test for use of complex in array, slice, field, chan, map, field, pointer. R=rsc CC=golang-dev http://codereview.appspot.com/384041 | |||||
2010-03-09 | identical complex implementation | Ken Thompson | 5 | -11/+11 | |
for 6g and 8g. can also be used for 5g. 5g is still a stub. R=rsc CC=golang-dev http://codereview.appspot.com/362041 | |||||
2010-03-05 | 6g complex type usable | Ken Thompson | 3 | -3/+83 | |
8g and 5g have stubs to ignore complex R=rsc CC=golang-dev http://codereview.appspot.com/257042 | |||||
2010-03-02 | test: fix 386 build (missing complex) | Russ Cox | 3 | -2/+4 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/223106 | |||||
2010-03-02 | more on type complex. | Ken Thompson | 3 | -0/+208 | |
getting close. R=rsc CC=golang-dev http://codereview.appspot.com/224105 | |||||
2010-01-19 | Add explicit locking. | Ian Lance Taylor | 1 | -7/+29 | |
Since gcco runs goroutines in independent threads, it needs locking for the global variables. This shows up when I use ordinary increments rather than locked increments for var++. R=ken2, ken3 CC=golang-dev http://codereview.appspot.com/190074 | |||||
2009-12-10 | trailing comma's are not accepted with current syntax | Robert Griesemer | 1 | -2/+1 | |
R=rsc, ken2 http://codereview.appspot.com/174047 | |||||
2009-12-10 | make test/ken safe for optional semis | Robert Griesemer | 32 | -394/+188 | |
R=rsc, ken2, ken3 http://codereview.appspot.com/174042 | |||||
2009-11-20 | x[y:] for strings | Russ Cox | 1 | -1/+1 | |
R=ken2 http://codereview.appspot.com/157114 | |||||
2009-11-20 | x[lo:] - gc and runtime. | Russ Cox | 2 | -0/+16 | |
* add runtime sliceslice1 for x[lo:] * remove runtime arraytoslice, rewriting &arr into arr[0:len(arr)]. * port cgen_inline into 8g, 5g. * use native memmove in maps R=ken2 http://codereview.appspot.com/157106 | |||||
2009-10-13 | write stack traces and panics to stderr | Rob Pike | 1 | -0/+2 | |
R=rsc DELTA=31 (5 added, 3 deleted, 23 changed) OCL=35700 CL=35700 | |||||
2009-10-09 | time tests; sort -nr times.out | sed 10q is illuminating. | Russ Cox | 2 | -2/+2 | |
cut the slowest tests down from a few seconds to under half a second. R=r DELTA=21 (6 added, 1 deleted, 14 changed) OCL=35509 CL=35519 | |||||
2009-09-28 | disallow interface { x, y() } | Russ Cox | 2 | -7/+8 | |
R=ken OCL=35042 CL=35044 | |||||
2009-09-14 | fix "declared and not used" in tests; | Russ Cox | 3 | -14/+16 | |
also template/template.go, missed last time. R=r DELTA=116 (61 added, 10 deleted, 45 changed) OCL=34620 CL=34622 | |||||
2009-09-08 | compound literal test | Ken Thompson | 1 | -0/+171 | |
R=rsc OCL=34453 CL=34455 | |||||
2009-08-28 | arraytoslice and some cleanup | Ken Thompson | 1 | -1/+6 | |
R=rsc OCL=34058 CL=34058 | |||||
2009-08-28 | sliceslice inline | Ken Thompson | 1 | -0/+129 | |
R=rsc OCL=34041 CL=34041 | |||||
2009-08-27 | inline slicearray | Ken Thompson | 1 | -0/+127 | |
R=rsc OCL=33974 CL=33974 | |||||
2009-08-21 | Enable these tests. Fix divconst.go and modconst.go to | Ian Lance Taylor | 2 | -4/+0 | |
compile with the current compiler. Adjust expected error message in method1.go to match 6g output. R=rsc DELTA=9 (2 added, 5 deleted, 2 changed) OCL=33674 CL=33682 | |||||
2009-08-17 | fix up some irregular indentation | Rob Pike | 3 | -4/+2 | |
R=rsc OCL=33382 CL=33391 | |||||
2009-08-12 | delete forward type declarations | Russ Cox | 1 | -6/+0 | |
R=r DELTA=163 (1 added, 149 deleted, 13 changed) OCL=33106 CL=33111 | |||||
2009-08-12 | convert non-pkg go files to whole-package compilation. | Russ Cox | 4 | -11/+0 | |
mostly removing forward declarations. R=r DELTA=138 (2 added, 127 deleted, 9 changed) OCL=33068 CL=33099 | |||||
2009-08-10 | 8-bit div and mod | Russ Cox | 2 | -0/+220 | |
R=ken OCL=32975 CL=32975 | |||||
2009-08-08 | another plateau - almost done | Ken Thompson | 2 | -20/+717 | |
only need to fix up certain denominators R=rsc OCL=32928 CL=32928 | |||||
2009-08-06 | divide by a constant power of 2 | Ken Thompson | 1 | -0/+45 | |
R=rsc OCL=32858 CL=32858 | |||||
2009-06-04 | string([]int) is now implemented | Rob Pike | 1 | -5/+15 | |
R=rsc DELTA=18 (10 added, 2 deleted, 6 changed) OCL=29909 CL=29909 | |||||
2009-05-08 | move things out of sys into os and runtime | Russ Cox | 2 | -10/+14 | |
R=r OCL=28569 CL=28573 | |||||
2009-05-06 | added a distinguishing string to the error prints | Ken Thompson | 1 | -31/+58 | |
R=r OCL=28321 CL=28357 | |||||
2009-05-05 | signs on div and mod | Ken Thompson | 1 | -0/+184 | |
R=r OCL=28319 CL=28319 | |||||
2009-04-16 | make string take []byte only, so have to use *[10]byte to convert | Russ Cox | 1 | -2/+2 | |
R=r DELTA=4 (0 added, 0 deleted, 4 changed) OCL=27578 CL=27584 | |||||
2009-04-15 | code changes for array conversion. | Russ Cox | 2 | -5/+5 | |
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534 | |||||
2009-02-11 | insert type assertions when narrowing. | Russ Cox | 3 | -16/+16 | |
R=r OCL=24349 CL=24913 | |||||
2009-01-30 | update go code tree to new func rules. | Russ Cox | 1 | -2/+2 | |
R=r DELTA=367 (111 added, 59 deleted, 197 changed) OCL=23957 CL=23960 | |||||
2009-01-26 | removed a:b in range syntax | Ken Thompson | 2 | -4/+60 | |
added another channel test R=r OCL=23488 CL=23488 | |||||
2009-01-20 | delete export | Russ Cox | 9 | -37/+37 | |
TBR=r OCL=23121 CL=23127 | |||||
2009-01-16 | convert tests; nothing interesting. | Russ Cox | 10 | -45/+45 | |
R=r OCL=23012 CL=23014 | |||||
2009-01-16 | casify, cleanup sys | Russ Cox | 1 | -7/+7 | |
R=r OCL=22978 CL=22984 |