summaryrefslogtreecommitdiff
path: root/src/cmd
AgeCommit message (Expand)AuthorFilesLines
2009-05-21some array init bugsKen Thompson5-6/+9
2009-05-21stricter rules for assignment.Russ Cox1-1/+46
2009-05-21added key:val extension toKen Thompson8-264/+473
2009-05-20stricter interface conversion rule: i.(T)Russ Cox3-1/+8
2009-05-20ifaceop was being called with integersRuss Cox2-15/+33
2009-05-20change representation of interface values.Russ Cox6-24/+133
2009-05-20fix implicit star for range on *map, *[].Russ Cox1-7/+11
2009-05-19static initialization of stringsKen Thompson2-0/+24
2009-05-18static initialization of slicesKen Thompson5-27/+115
2009-05-18- changed parser to return os.Error, removed ErrorHandlerRobert Griesemer1-7/+4
2009-05-17static initialization with DATA statementsKen Thompson5-31/+333
2009-05-16static initializationKen Thompson6-3/+17
2009-05-14fix spelling error in messageRob Pike1-1/+1
2009-05-12no need for compiler to hard-code definition of runtime.Russ Cox6-24/+2
2009-05-08gobuild: command printing bug fixRuss Cox1-1/+1
2009-05-086g:Russ Cox11-88/+172
2009-05-08implications of stricter type equality:Russ Cox1-2/+2
2009-05-08move things out of sys into os and runtimeRuss Cox9-28/+30
2009-05-08Move sys.Reflect and sys.Unreflect into unsafe.Rob Pike3-5/+4
2009-05-08eqtype(t1, t2, 0) => eqtype(t1, t2)Russ Cox9-34/+47
2009-05-08Name change to improve embeddability:Rob Pike1-4/+4
2009-05-07if a struct s contains an anonymous interface valueRuss Cox5-9/+50
2009-05-076g: error messagesRuss Cox2-5/+15
2009-05-076g: error messagesRuss Cox2-6/+61
2009-05-066g: simplify trampoline by postponing load.Russ Cox1-22/+37
2009-05-066g: new interface rules (code got simpler!)Russ Cox5-178/+121
2009-05-066g: generate string data as individual symbols,Russ Cox6-118/+142
2009-05-05signs on div and modKen Thompson1-1/+13
2009-05-056g bug: was dropping assignment of nil to globalsRuss Cox1-4/+7
2009-05-056g tweaksRuss Cox4-9/+19
2009-05-056l: eliminate dead code, not just the symbolsRuss Cox2-2/+22
2009-05-04more code optimizationKen Thompson2-3/+85
2009-05-03more morestack fiddlingKen Thompson2-36/+84
2009-05-03more code fiddlingKen Thompson4-22/+54
2009-05-01code optmizationKen Thompson1-0/+37
2009-05-01code improvementKen Thompson1-35/+85
2009-05-01Copied 8g/6g into 5g. Used sharp tools to coax a .5 file outKai Backman9-1/+4292
2009-04-30bug146: array/slice conversion before I left missed conversionsRuss Cox1-27/+10
2009-04-30change 6l library directory flag to -L,Russ Cox4-34/+30
2009-04-28allow "defer close(chan)"Ken Thompson1-17/+22
2009-04-28bug 139Ken Thompson1-1/+4
2009-04-28bug 145Ken Thompson1-0/+4
2009-04-24recognize a defined constantKen Thompson2-2/+20
2009-04-23Clear upper bits of 64-bit indexing register when using types smaller than 64...Ben Eitzen1-2/+5
2009-04-212 minor bugs.Ken Thompson1-2/+2
2009-04-21bug in shift of longer operandKen Thompson1-8/+11
2009-04-21supply default indirection toKen Thompson1-0/+2
2009-04-18mixed old/new declarationKen Thompson1-10/+89
2009-04-17add -P pkgdir option to 6l to have it look first in pkgdir for a package.Rob Pike3-2/+11
2009-04-17Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Err...Rob Pike4-7/+8