1. 7594440 cmd/8g: add a few missing splitclean by Russ Cox · 12 years ago
  2. fd178d6 cmd/gc: add way to specify 'noescape' for extern funcs by Russ Cox · 12 years ago
  3. 572d984 cmd/gc: fix escape analysis by Russ Cox · 12 years ago
  4. 399dcc7 cmd/gc: fix &^ code generation bug by Russ Cox · 12 years ago
  5. f02067a cmd/gc: implement latest rules for checking make sizes by Russ Cox · 12 years ago
  6. 09a17ca cmd/gc: make inlined labels distinct by Russ Cox · 12 years ago
  7. d82dcad cmd/gc: clean up string index errors by Russ Cox · 12 years ago
  8. 4ad505d cmd/gc: update ideal bool rules to match latest spec by Russ Cox · 12 years ago
  9. ffc742b cmd/gc: allow new conversion syntax by Russ Cox · 12 years ago
  10. 2af3cbe cmd/gc: treat &T{} like new(T): allocate on stack if possible by Russ Cox · 12 years ago
  11. a72f9f4 cmd/gc: avoid duplicate allocation during inlining by Russ Cox · 12 years ago
  12. 5ea52a4 cmg/gc: Fix evaluation order of map indexing during multiple assignments by Daniel Morsing · 12 years ago
  13. 8931306 cmd/gc: reject non-Go constants by Russ Cox · 12 years ago
  14. f607c47 cmd/gc: silence redundant error prints for misuse of [...]int by Russ Cox · 12 years ago
  15. e2711cb cmd/gc: put 'not used' message on correct line by Russ Cox · 12 years ago
  16. 79a16a3 cmd/gc: clearer error for defer/go of conversion or invalid function call by Russ Cox · 12 years ago
  17. 193ff39 test: add test that caused a gccgo compilation failure by Ian Lance Taylor · 12 years ago
  18. ba05a43 cmd/gc: Error out on division by constant zero. by Daniel Morsing · 12 years ago
  19. e38339e test: add test case miscompiled by gccgo by Ian Lance Taylor · 12 years ago
  20. 4f6a2b9 test: add support for build tags. by Rémy Oudompheng · 12 years ago
  21. 09cb91e test: re-enable issue4348.go. by Rémy Oudompheng · 12 years ago
  22. c0d9bf5 cmd/gc: more robust checking of OIND nodes. by Daniel Morsing · 12 years ago
  23. 1d6eb2e cmd/gc: fix handling of struct padding in hash/eq. by Rémy Oudompheng · 12 years ago
  24. d127ed5 cmd/gc, cmd/6g: fix error on large stacks. by Rémy Oudompheng · 12 years ago
  25. 2ad57b4 cmd/gc: don't hash nor compare struct padding or blank fields. by Rémy Oudompheng · 12 years ago
  26. dc75670 test: limit runoutput tests on arm platforms by Dave Cheney · 12 years ago
  27. 578f24d test: add rotate.go and fixedbugs/bug313 by Rémy Oudompheng · 12 years ago
  28. ab1385e test: adapt old-style tests to new flag parsing. by Rémy Oudompheng · 12 years ago
  29. c3836ed test: make rundir match compiledir/errorcheckdir. by Rémy Oudompheng · 12 years ago
  30. 8fff252 cmd/gc: add space to export data to match linker expectations by Rémy Oudompheng · 12 years ago
  31. fba96e9 cmd/gc: fix uintptr(nil) issues. by Rémy Oudompheng · 12 years ago
  32. f1e4ee3 cmd/5g, cmd/6g, cmd/8g: flush return parameters in case of panic. by Daniel Morsing · 12 years ago
  33. 20c76f7 cmd/gc: mark wrapper methods for unnamed types as DUPOK. by Rémy Oudompheng · 12 years ago
  34. ae2131a cmd/gc: make redeclaration between import and func less confusing by Russ Cox · 12 years ago
  35. 8850d14 test/run: handle compiledir and errorcheckdir with multi-file packages by Russ Cox · 12 years ago
  36. 6592456 cmd/gc: do not generate code for var _ = ... unless necessary by Russ Cox · 12 years ago
  37. 3aed92f cmd/gc: add diagnostic for var, type, const named init by Russ Cox · 12 years ago
  38. 1b3244e cmd/gc: fix eval order in select by Russ Cox · 12 years ago
  39. 9aef20e cmd/gc: fix wrong interaction between inlining and embedded builtins. by Rémy Oudompheng · 12 years ago
  40. ced8004 cmd/gc: do not accept (**T).Method expressions. by Rémy Oudompheng · 12 years ago
  41. c956dcd cmd/gc: Reject parenthesised .(type) expressions. by Daniel Morsing · 12 years ago
  42. 407d0c5 cmd/gc: fix error line in switch expr eval by Russ Cox · 12 years ago
  43. 4d3cbfd cmd/8g: introduce temporaries in byte multiplication. by Rémy Oudompheng · 12 years ago
  44. 1dcf658 cmd/gc: remove an incorrect assertion in escape analysis. by Rémy Oudompheng · 12 years ago
  45. 81b46f1 cmd/6g: fix componentgen for funarg structs. by Rémy Oudompheng · 12 years ago
  46. 9443093 test: add "duplicate" struct map key test by Russ Cox · 12 years ago
  47. 1947960 cmd/gc: fix defaultlit of shifts used in interface context. by Rémy Oudompheng · 12 years ago
  48. cc5682d test: s/float/float32/ by Ian Lance Taylor · 12 years ago
  49. 9509cbf test: move map delete test to nil.go by Ian Lance Taylor · 12 years ago
  50. 0df58a4 test/nil.go: delete on nil maps no longer panics Fix the build. by Shenghou Ma · 12 years ago
  51. 28a50c7 runtime: deletion on nil maps is a no-op now Fixes #4535. by Shenghou Ma · 12 years ago
  52. bf59aaf cmd/gc: Give better line numbers for errors in composite literals. by Daniel Morsing · 12 years ago
  53. 0d22573 cmd/gc: remove bad check for BADWIDTH by Daniel Morsing · 12 years ago
  54. 561edbd6 cmd/gc: do not export useless private symbols. by Rémy Oudompheng · 12 years ago
  55. 9146ac1 cmd/gc: do not overflow parser stack on a long chain of else if. by Rémy Oudompheng · 12 years ago
  56. b46d56a test: add some tests where go/defer arg starts with parenthesis by Ian Lance Taylor · 12 years ago
  57. 08918ba gc: avoid meaningless constant overflow error for inverted slice range by Ian Lance Taylor · 12 years ago
  58. 54e8d50 cmd/5g: use MOVB for fixed array nil check by Dave Cheney · 12 years ago
  59. feb95a8 test: tweak bug273.go to not have constant len < cap when calling make by Ian Lance Taylor · 12 years ago
  60. 7693715 test: add test for invalid nil == nil by Ian Lance Taylor · 12 years ago
  61. dfe2979 test: add test for unused calls to builtin functions by Ian Lance Taylor · 12 years ago
  62. 8990dc8 test: add test for issue 4468 (go/defer expr may not be parenthesized) by Ian Lance Taylor · 12 years ago
  63. bcea0dd cmd/gc: fix inlining internal error with T.Method calls. by Rémy Oudompheng · 12 years ago
  64. 0304a48 test: add a test that caused gccgo to crash by Ian Lance Taylor · 12 years ago
  65. f134742 cmd/5g, cmd/8g: fix internal error on 64-bit indices statically bounded by Rémy Oudompheng · 12 years ago
  66. 5188c0b cmd/gc: Make sure bools lose idealness when used with logical operators. by Daniel Morsing · 12 years ago
  67. 2e73453 cmd/6l, cmd/8l: emit no-ops to separate zero-stack funcs from nosplits. by Rémy Oudompheng · 12 years ago
  68. 7c295f3 cmd/gc: fix invalid indirect error at statement level Fixes #4429. by Shenghou Ma · 12 years ago
  69. 76fa4f4 test: add test for floating point rounding of constants by Ian Lance Taylor · 12 years ago
  70. be5c445 test: add bug469, a case where gccgo gaves an incorrect error by Ian Lance Taylor · 12 years ago
  71. 1bd4a7d cmd/8g: fix erroneous LEAL nil. by Rémy Oudompheng · 12 years ago
  72. 8f3b703 cmd/gc: complain about invalid whitespace chars by Robert Griesemer · 12 years ago
  73. eb4f4d1 cmd/5g, cmd/6g: pass the full torture test. by Rémy Oudompheng · 12 years ago
  74. 3e50372 test: change index.go to test size of int, not GOARCH == "amd64" by Ian Lance Taylor · 12 years ago
  75. 761830f cmd/gc: fix export of inlined function body with type guard by Russ Cox · 12 years ago
  76. 6694f14 test: run some more tests by default by Ian Lance Taylor · 12 years ago
  77. c208a3a cmd/gc: fix internal compiler error with broken structs. by Rémy Oudompheng · 12 years ago
  78. 7c0cbbf cmd/6g, cmd/8g: mark used registers in indirect addressing. by Rémy Oudompheng · 12 years ago
  79. e08008e test: run index test by default by Ian Lance Taylor · 12 years ago
  80. 7128213 cmd/gc: fix escape analysis bug by Russ Cox · 12 years ago
  81. f8614a6 reflect: fix test of whether structs are identical by Ian Lance Taylor · 12 years ago
  82. cb856ad cmd/gc: annotate local variables with unique ids for inlining by Russ Cox · 12 years ago
  83. 1e233ad cmd/6g: fix use of large integers as indexes or array sizes. by Rémy Oudompheng · 12 years ago
  84. 433b2f1 test: fix index.go to pass with recent index checks by Ian Lance Taylor · 12 years ago
  85. 0b2353e cmd/5g, cmd/6g: fix out of registers with array indexing. by Rémy Oudompheng · 12 years ago
  86. 8d95245 cmd/gc: fix incomplete export data when inlining with local variables. by Rémy Oudompheng · 12 years ago
  87. 76500b1 cmd/gc: fix inlining bug with local variables. by Rémy Oudompheng · 12 years ago
  88. 7dc1182 test: match gccgo error messages for bug358.go by Ian Lance Taylor · 12 years ago
  89. 507fcf3 cmd/gc: escape analysis to track flow of in to out parameters. by Luuk van Dijk · 12 years ago
  90. 335eef8 cmd/6g: fix crash in cgen_bmul. by Rémy Oudompheng · 12 years ago
  91. 48af64b cmd/gc: Mark use of builtin functions as calls. by Daniel Morsing · 12 years ago
  92. 319131f cmd/gc: fix inlining bug for composite literals in if statements. by Rémy Oudompheng · 12 years ago
  93. d7a3407 cmd/gc: fix confusing error when using variable as type. by Daniel Morsing · 12 years ago
  94. a7a3fe7 cmd/gc: Friendlier errors on oversized arrays. by Daniel Morsing · 12 years ago
  95. a468234 cmd/gc: don't squash complex literals when inlining. by Rémy Oudompheng · 12 years ago
  96. 7e144bc cmd/5g, cmd/6g, cmd/8g: fix out of registers. by Rémy Oudompheng · 12 years ago
  97. dda1b56 test: convert tests to run.go whenever possible. by Rémy Oudompheng · 12 years ago
  98. f8b5838 testing: change -test.benchtime to a flag.Duration. by David Symonds · 12 years ago
  99. c81293a test: Make run.go's errorcheck behave like testlib. by Daniel Morsing · 12 years ago
  100. 46bce2a test: convert more tests to rundir/compiledir conventions by Rémy Oudompheng · 12 years ago