summaryrefslogtreecommitdiff
path: root/src/cmd/gc
AgeCommit message (Expand)AuthorFilesLines
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
2010-04-11gc: make sure main.main has correct typeRuss Cox1-2/+9
2010-04-04gc: good syntax error for defer func() {} - missing final ()Russ Cox1-0/+4
2010-04-01runtime: turn run time errors checks into panicsRuss Cox4-9/+9
2010-03-31gc: fix alignment on non-amd64Russ Cox1-1/+1
2010-03-31gc: implement panic and recoverRuss Cox8-9/+31
2010-03-30gc: add panic and recover (still unimplemented in runtime)Russ Cox7-5/+35
2010-03-29gc: flush warnings, if anyRuss Cox1-0/+1
2010-03-29gc: bug265Russ Cox1-5/+20
2010-03-26gc: allow taking address of out parametersRuss Cox2-5/+27
2010-03-25gc: more syntax errorsRuss Cox1-10/+16
2010-03-24depricate paniclnKen Thompson6-13/+4
2010-03-23gc: fix build in FranceRuss Cox1-1/+1
2010-03-22gc: various map-related bug fixesRuss Cox3-57/+50
2010-03-20issue 682Ken Thompson3-21/+8
2010-03-091. decommit complex(float) conversionKen Thompson4-18/+13
2010-03-09gc: remove duplicate errors, give better error for I.(T)Russ Cox1-7/+16
2010-03-09fix bugs compiling things likeKen Thompson1-6/+13
2010-03-09identical complex implementationKen Thompson4-3/+497
2010-03-08gc: avoid fixed length buffer cleanbufDean Prichard1-2/+3
2010-03-08gc: simplify complex typecheckRuss Cox3-31/+37
2010-03-085g/6g/8g: fix double function call in sliceRuss Cox2-0/+9
2010-03-056g complex type usableKen Thompson5-1/+118
2010-03-05gc: fix crash on complicated arg to make slice.Russ Cox1-1/+1
2010-03-05gc: better compilation of floating point +=Russ Cox1-2/+5
2010-03-03gc: fix imported and not used message - show pathRuss Cox3-4/+3
2010-03-02more on type complex.Ken Thompson1-0/+6
2010-02-25gc: implement []int(string) and []byte(string)Russ Cox5-14/+87
2010-02-21gc: minor const simplificationsRuss Cox1-32/+15