- 4238b18 1. check for dups in complex literals by Ken Thompson · 16 years ago
- bba10b3 some array init bugs renamed 6g/(gen|align|obj).c by Ken Thompson · 16 years ago
- a016081 added key:val extension to structure and array literals by Ken Thompson · 16 years ago
- da49bfe static initialization of strings by Ken Thompson · 16 years ago
- b91a043 static initialization of slices by Ken Thompson · 16 years ago
- 62231e9 static initialization with DATA statements by Ken Thompson · 16 years ago
- 52b0f77 static initialization structure set up - no change yet by Ken Thompson · 16 years ago
- b3533df 6g: by Russ Cox · 16 years ago
- d4fa253 eqtype(t1, t2, 0) => eqtype(t1, t2) by Russ Cox · 16 years ago
- 5a67ea3 6g: simplify trampoline by postponing load. by Russ Cox · 16 years ago
- 83cd4ee 6g: generate string data as individual symbols, by Russ Cox · 16 years ago
- 567a7bf more code optimization by Ken Thompson · 16 years ago
- a5a8789 more code fiddling by Ken Thompson · 16 years ago
- 91ce0ef bug 139 by Ken Thompson · 16 years ago
- 155ec1d Clear upper bits of 64-bit indexing register when using types smaller than 64 bits. by Ben Eitzen · 16 years ago
- c18db5a bug in shift of longer operand by Ken Thompson · 16 years ago
- f985497 bug 142 order of evaluation && and || by Ken Thompson · 16 years ago
- 3657061 change representation of strings by Ken Thompson · 16 years ago
- b199035 move tiny gsubr functions together at the top of the file. by Russ Cox · 16 years ago
- 441da9a fix build (moved decl to go.h earlier and changed vlong to int64). by Russ Cox · 16 years ago
- 5e792b6 move portable object routines (especially signature generation) into gc. by Russ Cox · 16 years ago
- bac922c move portable code generation (basic statements) to gc. by Russ Cox · 16 years ago
- d30285a move some portable pieces of 6g/gsubr.c into gc/subr.c by Russ Cox · 16 years ago
- e5ba266 delete dregs: inarggen, genpanic, regret by Russ Cox · 16 years ago
- 8e54729 move alignment calculations into gc by Russ Cox · 16 years ago
- 531f242 move bits.c from 6g to gc by Russ Cox · 16 years ago
- 0f469a9 binary search on type switches. by Ken Thompson · 16 years ago
- 5136a9e change format of Sigt and Sigi by Ken Thompson · 16 years ago
- 8f194bf make 6g constants behave as ken proposes. (i hope.) by Russ Cox · 16 years ago
- 48f6b51 bug 137 by Ken Thompson · 16 years ago
- 0c4f458 bug with interaction of variables declared in cases and heap allocation by Ken Thompson · 16 years ago
- bf98347 new switch implementation by Ken Thompson · 16 years ago
- 751d13c bug 130 (go/defer) interface.method() by Ken Thompson · 16 years ago
- 5600337 change array padding in structures by Ken Thompson · 16 years ago
- 0970c46 closures - 6g support by Russ Cox · 16 years ago
- f61639d 6g return struct fix: make t->width of funarg struct be width of struct. by Russ Cox · 16 years ago
- 7b6bdfb two uses of uninitialized memory, by Russ Cox · 16 years ago
- 122ed3e print format bug by Russ Cox · 16 years ago
- 4a43198 update compiler to new func rules by Russ Cox · 16 years ago
- 391425a if take address of local, move to heap. by Russ Cox · 16 years ago
- 4f49b88 optimizer bug w STOstring by Ken Thompson · 16 years ago
- 282bf8c fix possible infinite recursion in eqtype. by Russ Cox · 16 years ago
- 743ac07 change dotdotdot interfaces to be structs, not pointers to structs. by Russ Cox · 16 years ago
- 1e1cc4e defer by Ken Thompson · 16 years ago
- 9b6d385 interface speedups and fixes. by Russ Cox · 16 years ago
- 61590c4 disallow P.t for lowercase t and not our package P. by Russ Cox · 16 years ago
- 35e37bb 6g: better genembedtramp fatal error, by Russ Cox · 16 years ago
- 07d344e remove export name-list statement. by Russ Cox · 16 years ago
- 8fb6076 in 6g -r (the rsc flag), rewrite heap pointer moves as xchg. by Russ Cox · 16 years ago
- ae167bf clean up automatic indirect, delete some dead code. by Russ Cox · 16 years ago
- 8f5bba0 silence gcc warnings. not sure if the warning in reg.c was a real bug. by Russ Cox · 16 years ago
- a91af04 6g cleanup suggested by ken. remove TPTR wrapper around TMAP, TCHAN, TSTRING. by Russ Cox · 16 years ago
- 1b7881a fix: type T []int var a []int var t = T(a) by Russ Cox · 16 years ago
- 20595ac many interface bug fixes. by Russ Cox · 16 years ago
- 1b1f1b5 correct signature generation decision for non-pointer types with methods. by Russ Cox · 16 years ago
- d8c7980 comment sudoaddable; remove unused second parameter. by Russ Cox · 16 years ago
- 2d259c8 add comments and delete dead code by Russ Cox · 16 years ago
- 2b33a13 regfree by Ken Thompson · 16 years ago
- 7cfe782 LEAQ bug by Ken Thompson · 16 years ago
- c3077f7 [] and struct in interfaces. other [] cleanup. by Russ Cox · 16 years ago
- a91a0a6 array compare (except = != nil) are illegal by Ken Thompson · 16 years ago
- 6fa74e0 portability bug cant assign to closed array by Ken Thompson · 16 years ago
- c9954c6 bug in [const] by Ken Thompson · 16 years ago
- dcc064f cmp [] to nil by Ken Thompson · 16 years ago
- 4026500 arrays by Ken Thompson · 16 years ago
- 8f53bc0 new convention, direction bit is by Ken Thompson · 16 years ago
- 42d89ac even more code improvement by Ken Thompson · 16 years ago
- 23fc0ac more code optimization by Ken Thompson · 16 years ago
- 719b088 code generation by Ken Thompson · 16 years ago
- 937ac13 code improvement by Ken Thompson · 16 years ago
- cb64ec5 only generate non-trivial signatures in the by Russ Cox · 16 years ago
- a4459c5 bug by Ken Thompson · 16 years ago
- 1d4daa2 foundation for import unsafe by Ken Thompson · 16 years ago
- a0a14b9 empty switches -- bug128 by Ken Thompson · 16 years ago
- c8a66a9 small code improvement to used scaled indexing by Ken Thompson · 16 years ago
- 9a5c7ea better code for += -= ^= |= and &= by Ken Thompson · 16 years ago
- 8e3fe10 1. retract general field names 2. array bounds bug 3. ... optimization bug by Ken Thompson · 16 years ago
- a6182da indexing optimizations and bug fix by Ken Thompson · 16 years ago
- e081f25 reg and peep by Ken Thompson · 16 years ago
- 9a6fd41 silence gcc warnings: missing prototypes and unused variables by Russ Cox · 16 years ago
- 64718ec oops by Ken Thompson · 16 years ago
- 2dd16a3 first cut at optimizing by Ken Thompson · 16 years ago
- 93c8d3c another shift bug by Ken Thompson · 16 years ago
- b7f01f9 silence compiler warning by Ken Thompson · 16 years ago
- e875055 switch by Ken Thompson · 16 years ago
- 7921457 width fixes. by Russ Cox · 16 years ago
- 79f5697 byte multiply by Ken Thompson · 16 years ago
- dc78c64 byte multiply by Ken Thompson · 16 years ago
- ec81145 s/gins/gbranch/ by Russ Cox · 16 years ago
- 0eda21a change minimum sethi/ullman number to 1 by Russ Cox · 16 years ago
- 1983121 6g interface changes: by Russ Cox · 16 years ago
- c249a8de rename various magic names. by Russ Cox · 16 years ago
- 250ec166 unsigned divide by fn() by Ken Thompson · 16 years ago
- d2472eb >>= and <<= shift bug by Ken Thompson · 16 years ago
- 74427c6 DOTDOTDOT by Ken Thompson · 16 years ago
- fd922c8 shift bug by Ken Thompson · 16 years ago
- 4a3ce5f sigt_int by Ken Thompson · 16 years ago
- c21d9a1 the end of life as we know it int is new type by Ken Thompson · 16 years ago
- b642cf8 embedded methods by Ken Thompson · 16 years ago
- b379d54 another step toward interface subtypes put explicit ./ on some runtime tests by Ken Thompson · 16 years ago