Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-02-29 | Imported Upstream version 2012.02.22 | Ondřej Surý | 26 | -326/+6241 | |
2012-01-30 | Imported Upstream version 2012.01.27 | Ondřej Surý | 33 | -2735/+5969 | |
2011-10-06 | Imported Upstream version 2011.09.21upstream-weekly/2011.09.21 | Ondřej Surý | 5 | -30/+38 | |
2011-09-13 | Imported Upstream version 2011.09.07upstream-weekly/2011.09.07 | Ondřej Surý | 31 | -400/+1638 | |
2011-08-24 | Imported Upstream version 2011.08.17 | Ondřej Surý | 8 | -51/+50 | |
2011-08-10 | Imported Upstream version 2011.08.10upstream-weekly/2011.08.10 | Ondřej Surý | 2 | -5/+37 | |
2011-08-03 | Imported Upstream version 2011.07.29upstream-weekly/2011.07.29 | Ondřej Surý | 19 | -164/+277 | |
2011-07-08 | Imported Upstream version 2011.07.07upstream-weekly/2011.07.07 | Ondřej Surý | 3 | -3/+22 | |
2011-06-28 | Imported Upstream version 2011.06.23upstream-weekly/2011.06.23 | Ondřej Surý | 13 | -160/+270 | |
2011-06-10 | Imported Upstream version 2011.06.09upstream-weekly/2011.06.09 | Ondřej Surý | 10 | -347/+523 | |
2011-06-03 | Imported Upstream version 2011.06.02upstream-weekly/2011.06.02 | Ondřej Surý | 16 | -45/+289 | |
2011-05-23 | Imported Upstream version 2011.05.22upstream-weekly/2011.05.22 | Ondřej Surý | 8 | -62/+131 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 12 | -88/+266 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 20 | -177/+392 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 8 | -33/+73 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 8 | -25/+58 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 16 | -135/+314 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 28 | -576/+1629 | |
2010-06-30 | gc: do not crash on bad [...]T | Russ Cox | 1 | -0/+5 | |
Fixes issue 879. R=ken2 CC=golang-dev http://codereview.appspot.com/1678048 | |||||
2010-06-28 | compiler fatal error in switch. | Ken Thompson | 1 | -5/+6 | |
fixes issue 867. R=rsc CC=golang-dev http://codereview.appspot.com/1691045 | |||||
2010-06-27 | optimization of static initialization | Ken Thompson | 4 | -128/+202 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1677049 | |||||
2010-06-23 | gc: fix crash for nested complex division | Russ Cox | 1 | -1/+1 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1720043 | |||||
2010-06-21 | gc: include struct field tags in type equality | Russ Cox | 1 | -1/+13 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1667048 | |||||
2010-06-20 | reflect: add Kind, remove Int8Type, Int8Value, etc. | Russ Cox | 1 | -13/+19 | |
update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044 | |||||
2010-06-20 | gc: delete debug print | Russ Cox | 1 | -1/+0 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1732043 | |||||
2010-06-20 | gc: better error messages for interface failures, conversions | Russ Cox | 4 | -33/+86 | |
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 | |||||
2010-06-20 | gc: fix build - subnode not addable in complexgen | Russ Cox | 1 | -6/+9 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1677047 | |||||
2010-06-14 | gc: no more ... | Russ Cox | 17 | -838/+497 | |
various cleanup, deleting unused code R=ken2 CC=golang-dev http://codereview.appspot.com/1663041 | |||||
2010-06-12 | gc: less aggressive name binding, for better line numbers in errors | Russ Cox | 8 | -82/+111 | |
Cleans up a few other corner cases too. R=ken2 CC=golang-dev http://codereview.appspot.com/1592045 | |||||
2010-06-11 | gc: change -u to require imports to be marked safe | Russ Cox | 5 | -3/+22 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1597043 | |||||
2010-06-09 | gc: more cleanup | Russ Cox | 5 | -39/+100 | |
* 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 | |||||
2010-06-08 | gc: new typechecking rules | Russ Cox | 14 | -859/+559 | |
* 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 | |||||
2010-06-07 | gc: better error message when ~ operator is found | Robert Griesemer | 1 | -1/+1 | |
Fixes issue 844. R=ken2, rsc, ken3 CC=golang-dev http://codereview.appspot.com/1593041 | |||||
2010-06-07 | gc: backslash newline is not a legal escape sequence in strings | Robert Griesemer | 1 | -4/+0 | |
Fixes issue 827. R=ken2 CC=golang-dev, rsc http://codereview.appspot.com/1592041 | |||||
2010-06-01 | gc: fix export of complex types | Russ Cox | 1 | -0/+3 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1442042 | |||||
2010-05-24 | gc: more accurate error description | Russ Cox | 1 | -2/+2 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1284041 | |||||
2010-05-24 | gc: fix shift/reduce conflict in go.y export syntax | Russ Cox | 2 | -4/+19 | |
Fixes issue 771. R=ken2 CC=golang-dev http://codereview.appspot.com/1267042 | |||||
2010-05-24 | gc: bug277 - new conversion syntax | Russ Cox | 1 | -21/+10 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1220046 | |||||
2010-05-24 | gc: bug280 | Russ Cox | 1 | -0/+2 | |
Fixes issue 808. R=ken2 CC=golang-dev http://codereview.appspot.com/1273042 | |||||
2010-05-24 | gc: bug278 | Russ Cox | 1 | -0/+3 | |
Fixes issue 804. R=ken2 CC=golang-dev http://codereview.appspot.com/1224045 | |||||
2010-05-24 | gc: fix unsafe.Sizeof on ideal constants | Russ Cox | 1 | -4/+2 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1280041 | |||||
2010-05-20 | gc: handle use of builtin function outside function call | Russ Cox | 2 | -1/+7 | |
tweaks & tests of last bug fix too. R=ken2 CC=golang-dev http://codereview.appspot.com/1207044 | |||||
2010-05-20 | gc: line number bug fix | Russ Cox | 1 | -1/+1 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1243044 | |||||
2010-05-20 | fix bug 275 | Ken Thompson | 1 | -5/+11 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1198046 | |||||
2010-05-20 | gc: disallow · in Go programs | Russ Cox | 1 | -1/+1 | |
Fixes issue 793. R=ken2 CC=golang-dev http://codereview.appspot.com/1249043 | |||||
2010-05-20 | fix issue 798 | Ken Thompson | 2 | -0/+3 | |
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 | |||||
2010-05-18 | gc: Better error when computing remainder of non-int | Evan Shaw | 1 | -1/+1 | |
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> | |||||
2010-05-06 | gc: distinguish array, slice literal in error messages | Russ Cox | 1 | -1/+4 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1138041 | |||||
2010-05-03 | allow data statements for simple | Ken Thompson | 2 | -7/+5 | |
external variable assignements. R=rsc CC=golang-dev http://codereview.appspot.com/1094041 | |||||
2010-05-03 | gc: bug264 | Russ Cox | 1 | -1/+3 | |
Fixes issue 692. R=ken2 CC=golang-dev http://codereview.appspot.com/1092041 |