summaryrefslogtreecommitdiff
path: root/src/cmd/gc/walk.c
AgeCommit message (Expand)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-92/+313
2010-06-27optimization of static initializationKen Thompson1-3/+3
2010-06-14gc: no more ...Russ Cox1-152/+25
2010-06-12gc: less aggressive name binding, for better line numbers in errorsRuss Cox1-6/+28
2010-06-08gc: new typechecking rulesRuss Cox1-305/+81
2010-05-20gc: handle use of builtin function outside function callRuss Cox1-1/+3
2010-05-20gc: line number bug fixRuss Cox1-1/+1
2010-05-03allow data statements for simpleKen Thompson1-1/+3
2010-05-01gc: be pickier about slice, chan, array, and map sizesRuss Cox1-5/+9
2010-04-30gc: bug271Russ Cox1-8/+7
2010-04-30gc: bug270Russ Cox1-4/+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-01runtime: turn run time errors checks into panicsRuss Cox1-6/+1
2010-03-31gc: implement panic and recoverRuss Cox1-1/+2
2010-03-30gc: add panic and recover (still unimplemented in runtime)Russ Cox1-2/+8
2010-03-29gc: bug265Russ Cox1-5/+20
2010-03-26gc: allow taking address of out parametersRuss Cox1-1/+25
2010-03-24depricate paniclnKen Thompson1-7/+3
2010-03-22gc: various map-related bug fixesRuss Cox1-50/+45
2010-03-09identical complex implementationKen Thompson1-3/+12
2010-03-085g/6g/8g: fix double function call in sliceRuss Cox1-0/+6
2010-03-056g complex type usableKen Thompson1-0/+3
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 Cox1-1/+0
2010-02-25gc: implement []int(string) and []byte(string)Russ Cox1-10/+22
2010-02-19fixed bug in mpconst float multiply by 0.Ken Thompson1-1/+1
2010-02-18gc: fix this morning's bug fixRuss Cox1-2/+1
2010-02-18complex constant multiply and divideKen Thompson1-4/+8
2010-02-18more complex - constantsKen Thompson1-0/+6
2010-02-18gc: recursive interface embeddingRuss Cox1-5/+43
2010-02-16gc: undo attempt at fixing recursive interface embeddingRuss Cox1-18/+1
2010-02-01gc: bug250, bug251 - recursive interface typesRuss Cox1-34/+66
2010-02-01gc: bug246Russ Cox1-1/+1
2010-02-01gc: bug242Russ Cox1-10/+28
2010-02-01gc: final ...T bug for the dayRuss Cox1-0/+2
2010-02-01gc: add ... T, rework plain ...Russ Cox1-3/+32
2010-01-27gc: implement defer print/println/panic/paniclnRuss Cox1-43/+129
2010-01-19gc: const debug bool = falseRuss Cox1-1/+1
2010-01-08gc: bug238Russ Cox1-1/+4
2009-12-27gc: various C nits, found by plan 9 compiler.Russ Cox1-1/+1
2009-12-17gc: fix compiler crashRuss Cox1-0/+2
2009-12-04gc/runtime: pass type structure to makeslice.Russ Cox1-2/+2
2009-12-02gc: function argument ordering bugRuss Cox1-5/+5
2009-12-026g etc: groundwork for eliminating redundant bounds checks.Russ Cox1-0/+8
2009-11-20x[y:] for stringsRuss Cox1-4/+10
2009-11-20x[lo:] - gc and runtime.Russ Cox1-17/+36
2009-11-18slicecopy was always using 16 (sizeof slice) for the size instead of size of ...Rob Pike1-1/+1
2009-11-17install copy predefinedKen Thompson1-1/+12