summaryrefslogtreecommitdiff
path: root/src/cmd/gc
AgeCommit message (Expand)AuthorFilesLines
2011-02-18Imported Upstream version 2011.02.15Ondřej Surý8-25/+58
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý16-135/+314
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý28-576/+1629
2010-06-30gc: do not crash on bad [...]TRuss Cox1-0/+5
2010-06-28compiler fatal error in switch.Ken Thompson1-5/+6
2010-06-27optimization of static initializationKen Thompson4-128/+202
2010-06-23gc: fix crash for nested complex divisionRuss Cox1-1/+1
2010-06-21gc: include struct field tags in type equalityRuss Cox1-1/+13
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-13/+19
2010-06-20gc: delete debug printRuss Cox1-1/+0
2010-06-20gc: better error messages for interface failures, conversionsRuss Cox4-33/+86
2010-06-20gc: fix build - subnode not addable in complexgenRuss Cox1-6/+9
2010-06-14gc: no more ...Russ Cox17-838/+497
2010-06-12gc: less aggressive name binding, for better line numbers in errorsRuss Cox8-82/+111
2010-06-11gc: change -u to require imports to be marked safeRuss Cox5-3/+22
2010-06-09gc: more cleanupRuss Cox5-39/+100
2010-06-08gc: new typechecking rulesRuss Cox14-859/+559
2010-06-07gc: better error message when ~ operator is foundRobert Griesemer1-1/+1
2010-06-07gc: backslash newline is not a legal escape sequence in stringsRobert Griesemer1-4/+0
2010-06-01gc: fix export of complex typesRuss Cox1-0/+3
2010-05-24gc: more accurate error descriptionRuss Cox1-2/+2
2010-05-24gc: fix shift/reduce conflict in go.y export syntaxRuss Cox2-4/+19
2010-05-24gc: bug277 - new conversion syntaxRuss Cox1-21/+10
2010-05-24gc: bug280Russ Cox1-0/+2
2010-05-24gc: bug278Russ Cox1-0/+3
2010-05-24gc: fix unsafe.Sizeof on ideal constantsRuss Cox1-4/+2
2010-05-20gc: handle use of builtin function outside function callRuss Cox2-1/+7
2010-05-20gc: line number bug fixRuss Cox1-1/+1
2010-05-20fix bug 275Ken Thompson1-5/+11
2010-05-20gc: disallow · in Go programsRuss Cox1-1/+1
2010-05-20fix issue 798Ken Thompson2-0/+3
2010-05-18gc: Better error when computing remainder of non-intEvan Shaw1-1/+1
2010-05-06gc: distinguish array, slice literal in error messagesRuss Cox1-1/+4
2010-05-03allow data statements for simpleKen Thompson2-7/+5
2010-05-03gc: bug264Russ Cox1-1/+3
2010-05-03gc: bug267Russ Cox1-0/+2
2010-05-03gc: error for nested functions, one semicolon problemRuss Cox1-1/+6
2010-05-01gc: be pickier about slice, chan, array, and map sizesRuss Cox5-44/+54
2010-04-30gc: bug271Russ Cox1-8/+7
2010-04-30gc: bug270Russ Cox1-4/+1
2010-04-29gc: never include ( ) on singleton func return typeRuss Cox1-8/+4
2010-04-29gc: bug268Russ Cox1-0/+6
2010-04-27gc: better windows detectionRuss Cox2-20/+8
2010-04-27gc: fix islocalname on windowsRuss Cox2-1/+28
2010-04-26gc: more specific error for statements at top levelRuss Cox1-10/+20
2010-04-20gc: print x[y:] correctlyRuss Cox1-1/+2
2010-04-19gc: cmplx typecheck bug fixRuss Cox1-1/+1
2010-04-12gc: zero unnamed return values on entry if func has deferRuss Cox1-4/+10
2010-04-11gc: compile s == "" as len(s) == 0Russ Cox1-0/+24
2010-04-11gc: distinguish fatal compiler bug from error+exitRuss Cox4-23/+49